Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/airflow-operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Setup Docker
uses: docker/setup-docker-action@v4
uses: docker/setup-docker-action@v5
with:
daemon-config: '{"features":{"containerd-snapshotter":false}}'
- run: docker buildx create --name ${DOCKER_BUILDX_BUILDER} --driver docker-container --use
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- uses: goreleaser/goreleaser-action@v6
- uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: v2.8.1
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Save Docker image tarballs as artifacts
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/patch/v')) }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: armada-image-tarballs
path: /tmp/imgs
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run: go run github.com/magefile/mage@v1.15.0 -v packNuget

- name: Save nupkg artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: nupkg-artifacts
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Setup Docker
uses: docker/setup-docker-action@v4
uses: docker/setup-docker-action@v5
with:
daemon-config: '{"features":{"containerd-snapshotter":false}}'
- name: Setup Go
Expand All @@ -77,7 +77,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Setup Docker
uses: docker/setup-docker-action@v4
uses: docker/setup-docker-action@v5
with:
daemon-config: '{"features":{"containerd-snapshotter":false}}'
- run: docker buildx create --name ${DOCKER_BUILDX_BUILDER} --driver docker-container --use
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
fetch-depth: 0

- name: "Docker login"
uses: "docker/login-action@v3"
uses: "docker/login-action@v4"
with:
username: "${{ secrets.DOCKERHUB_USER }}"
password: "${{ secrets.DOCKERHUB_PASS }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: "Docker login"
uses: "docker/login-action@v3"
uses: "docker/login-action@v4"
with:
username: "${{ secrets.DOCKERHUB_USER }}"
password: "${{ secrets.DOCKERHUB_PASS }}"
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
echo "GORELEASER_PREVIOUS_TAG=$previous_tag" >> $GITHUB_ENV

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: v2.8.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-client-release-to-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
components: clippy,rustfmt

- name: Cache cargo registry and build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
components: ${{ matrix.extra-components }}

- name: Cache cargo registry and build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: dawidd6/action-download-artifact@v13
uses: dawidd6/action-download-artifact@v20
with:
name: '.*-test-reports'
name_is_regexp: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Upload Test Reports Artifacts
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ts-unit-test-reports
path: ./internal/lookoutui/junit.xml
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Upload Test Reports Artifacts
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: go-unit-test-reports
path: test-reports/
Expand All @@ -82,7 +82,7 @@ jobs:
uses: actions/checkout@v6

- name: Setup Docker
uses: docker/setup-docker-action@v4
uses: docker/setup-docker-action@v5
with:
daemon-config: '{"features":{"containerd-snapshotter":false}}'

Expand All @@ -108,7 +108,7 @@ jobs:
run: go run github.com/magefile/mage@v1.15.0 -v testsuite

- name: Upload JUnit Report Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: go-integration-test-reports
path: junit.xml
Expand All @@ -122,7 +122,7 @@ jobs:
docker logs pulsar > ./logs/pulsar.log 2>&1

- name: Upload Docker Compose Logs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: docker-compose-logs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
cache-dependency-path: website/yarn.lock

- name: Setup Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6
if: github.ref == 'refs/heads/master' && steps.has-pages.outputs.HAS_PAGES == 'true'

- name: Restore cache
Expand Down Expand Up @@ -110,4 +110,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading