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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Download coverage artifacts from CI
if: github.event_name == 'workflow_run'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: coverage-*
path: coverage-downloads
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Upload Scaladoc report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: doclint-report
path: doclint-report.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Upload benchmark results
if: success()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-results
path: modules/performance-benchmarks/target/jmh-results*.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
PGP_SECRET: ${{ secrets.PGP_SECRET }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-artifacts-${{ needs.validate-release.outputs.version }}
path: release-artifacts/
Expand All @@ -224,7 +224,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8

- name: Download artifacts
uses: actions/download-artifact@4a24838f3d5601fd639834081e118c2995d51e1c
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: release-artifacts-${{ needs.validate-release.outputs.version }}
path: release-artifacts/
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: release-artifacts-${{ needs.validate-release.outputs.version }}
path: release-artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Upload dependency check report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dependency-check-report
path: target/dependency-check-report.html
Expand Down
Loading