Skip to content

Commit 9c0c290

Browse files
committed
refs #12683 - updated GitHub action actions/upload-artifact to v4
1 parent f9b73ed commit 9c0c290

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/buildman.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
args: --output=output/manual-premium.pdf man/manual-premium.md
3737

38-
- uses: actions/upload-artifact@v3
38+
- uses: actions/upload-artifact@v4
3939
with:
4040
name: output
4141
path: output
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
make man
5656
57-
- uses: actions/upload-artifact@v3
57+
- uses: actions/upload-artifact@v4
5858
with:
5959
name: cppcheck.1
6060
path: cppcheck.1

.github/workflows/cifuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
dry-run: false
2828
language: c++
2929
- name: Upload Crash
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
if: failure() && steps.build.outcome == 'success'
3232
with:
3333
name: artifacts

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info
5757
genhtml lcov.info -o coverage_report --frame --legend --demangle-cpp
5858
59-
- uses: actions/upload-artifact@v3
59+
- uses: actions/upload-artifact@v4
6060
with:
6161
name: Coverage results
6262
path: coverage_report

.github/workflows/iwyu.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ jobs:
113113
# -isystem/usr/lib/clang/17/include
114114
iwyu_tool -p cmake.output -j $(nproc) -- -w -Xiwyu --max_line_length=1024 -Xiwyu --comment_style=long -Xiwyu --quoted_includes_first -Xiwyu --update_comments > iwyu.log
115115
116-
- uses: actions/upload-artifact@v3
116+
- uses: actions/upload-artifact@v4
117117
if: success() || failure()
118118
with:
119119
name: Compilation Database
120120
path: ./cmake.output/compile_commands.json
121121

122-
- uses: actions/upload-artifact@v3
122+
- uses: actions/upload-artifact@v4
123123
if: success() || failure()
124124
with:
125125
name: Logs (include-what-you-use)
@@ -182,7 +182,7 @@ jobs:
182182
# TODO: run multi-threaded
183183
find $PWD/cli $PWD/lib $PWD/test $PWD/gui -maxdepth 1 -name "*.cpp" | xargs -t -n 1 clang-include-cleaner-18 --print=changes --extra-arg=-w -p cmake.output > clang-include-cleaner.log 2>&1
184184
185-
- uses: actions/upload-artifact@v3
185+
- uses: actions/upload-artifact@v4
186186
with:
187187
name: Logs (clang-include-cleaner)
188188
path: ./*.log

.github/workflows/release-windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ jobs:
133133
echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel!
134134
msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel!
135135
136-
- uses: actions/upload-artifact@v3
136+
- uses: actions/upload-artifact@v4
137137
with:
138138
name: installer
139139
path: win_installer/Build/
140140

141-
- uses: actions/upload-artifact@v3
141+
- uses: actions/upload-artifact@v4
142142
with:
143143
name: deploy
144144
path: win_installer\files
@@ -162,7 +162,7 @@ jobs:
162162
del win_installer\files\Qt5Svg.dll || exit /b !errorlevel!
163163
del win_installer\files\vc_redist.x64.exe || exit /b !errorlevel!
164164
165-
- uses: actions/upload-artifact@v3
165+
- uses: actions/upload-artifact@v4
166166
with:
167167
name: portable
168168
path: win_installer\files

.github/workflows/selfcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
env:
130130
DISABLE_VALUEFLOW: 1
131131

132-
- uses: actions/upload-artifact@v3
132+
- uses: actions/upload-artifact@v4
133133
with:
134134
name: Callgrind Output
135135
path: ./callgrind.*

.github/workflows/valgrind.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
#env:
5656
# DEBUGINFOD_URLS: https://debuginfod.ubuntu.com
5757

58-
- uses: actions/upload-artifact@v3
58+
- uses: actions/upload-artifact@v4
5959
if: success() || failure()
6060
with:
6161
name: Logs

0 commit comments

Comments
 (0)