Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v5
uses: actions/upload-artifact@v6
with:
name: armada-image-tarballs
path: /tmp/imgs
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run: go run github.com/magefile/[email protected] -v packNuget

- name: Save nupkg artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: nupkg-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y maven

- name: Restore Maven packages cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('client/java/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scala-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
version: '23.3'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Restore Maven packages cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ matrix.scala-version }}-${{ hashFiles('client/scala/armada-scala-client/pom.xml') }}
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@v9
uses: dawidd6/action-download-artifact@v12
with:
name: '.*-test-reports'
name_is_regexp: true
Expand Down
8 changes: 4 additions & 4 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@v5
uses: actions/upload-artifact@v6
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@v5
uses: actions/upload-artifact@v6
with:
name: go-unit-test-reports
path: test-reports/
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
run: go run github.com/magefile/[email protected] -v testsuite

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

- name: Upload Docker Compose Logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: docker-compose-logs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
if: github.ref == 'refs/heads/master' && steps.has-pages.outputs.HAS_PAGES == 'true'

- name: Restore cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
website/.next/cache
Expand Down