Skip to content

Commit 1272cfa

Browse files
Bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5e9864c commit 1272cfa

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,13 @@ jobs:
122122
done
123123
- name: Store results as artifact
124124
if: env.REPORT_FORMAT == 'json'
125-
uses: actions/upload-artifact@v6
125+
uses: actions/upload-artifact@v7
126126
with:
127127
name: bench-result-${{ matrix.os }}
128128
path: ${{ env.BENCHMARK_RESULTS }}/${{ env.MAIN_BENCH_RESULTS }}/**/*.json
129129
- name: Store comparison results as artifact
130130
if: env.REPORT_FORMAT == 'json' && matrix.os == 'ubuntu-latest'
131-
uses: actions/upload-artifact@v6
131+
uses: actions/upload-artifact@v7
132132
with:
133133
name: bench-comparison-result-${{ matrix.os }}
134134
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@v6
69+
uses: actions/upload-artifact@v7
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@v6
23+
- uses: actions/upload-artifact@v7
2424
with:
2525
name: pr_number
2626
path: pr/

0 commit comments

Comments
 (0)