Skip to content

Commit b5dac6b

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] <[email protected]>
1 parent 998f3fa commit b5dac6b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/openssf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
results_format: sarif
2828
publish_results: true
2929
- name: Upload artifact
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: SARIF file
3333
path: results.sarif

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run Doxygen
2323
run: doxygen Doxyfile
2424
- name: Upload Doxygen documentation
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v5
2626
with:
2727
name: doxygen-documentation-xml
2828
path: xml
@@ -60,7 +60,7 @@ jobs:
6060
run: |
6161
cmake --build build -t docs_html -- --quiet
6262
- name: Upload artifact
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: sphinx-documentation
6666
path: ./build/docs/_build/html
@@ -98,7 +98,7 @@ jobs:
9898
run: |
9999
cmake --build build --parallel -- --quiet
100100
- name: Upload artifact
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v5
102102
with:
103103
name: scoreboard
104104
path: ./build/scoreboard/html/

.github/workflows/perf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
working-directory: build
3939
run: zip -r ../perf-stat.zip perf_stat_dir
4040
- name: Upload results
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: perf-stat
4444
path: perf-stat.zip
@@ -74,7 +74,7 @@ jobs:
7474
working-directory: build
7575
run: zip -r perf-stat-macos.zip perf_stat_dir
7676
- name: Upload results
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: perf-stat-macos
8080
path: perf-stat-macos.zip

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
CC: gcc-14
3636
CXX: g++-14
3737
- name: Archive revert list
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
if: ${{ matrix.os == 'ubuntu-24.04' && matrix.build_type == 'Release' }}
4040
with:
4141
name: revert-list
@@ -397,7 +397,7 @@ jobs:
397397
token: ${{ secrets.CODECOV_TOKEN }}
398398
- name: Upload coverage report artifact
399399
id: upload-cov
400-
uses: actions/upload-artifact@v4
400+
uses: actions/upload-artifact@v5
401401
with:
402402
name: cov-report
403403
path: 'cov-report'

0 commit comments

Comments
 (0)