Skip to content

Commit f812b27

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d51cf79 commit f812b27

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ jobs:
124124
done
125125
- name: Store results as artifact
126126
if: env.REPORT_FORMAT == 'json'
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v5
128128
with:
129129
name: bench-result-${{ matrix.os }}
130130
path: ${{ env.BENCHMARK_RESULTS }}/${{ env.MAIN_BENCH_RESULTS }}/**/*.json
131131
- name: Store comparison results as artifact
132132
if: env.REPORT_FORMAT == 'json' && matrix.os == 'ubuntu-latest'
133-
uses: actions/upload-artifact@v4
133+
uses: actions/upload-artifact@v5
134134
with:
135135
name: bench-comparison-result-${{ matrix.os }}
136136
path: ${{ env.BENCHMARK_RESULTS }}/${{ env.COMPARISON_BENCH_RESULTS }}/**/*.json

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
token: ${{ secrets.CODECOV_TOKEN }}
6767
- name: Collect coverage reports
6868
if: inputs.collect-code-coverage && github.actor != 'dependabot[bot]'
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: coverage-reports
7272
path: '**/build/reports/kover/report.xml'

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
mkdir -p ./pr
2222
echo $PR_NUMBER > ./pr/pr_number
23-
- uses: actions/upload-artifact@v4
23+
- uses: actions/upload-artifact@v5
2424
with:
2525
name: pr_number
2626
path: pr/

0 commit comments

Comments
 (0)