Skip to content

Commit

Permalink
refs #12683 - updated GitHub action actions/upload-artifact to v4 (
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave authored Jun 1, 2024
1 parent d9e14f4 commit 528a835
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
args: --output=output/manual-premium.pdf man/manual-premium.md

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: output
path: output
Expand All @@ -54,7 +54,7 @@ jobs:
run: |
make man
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cppcheck.1
path: cppcheck.1
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
dry-run: false
language: c++
- name: Upload Crash
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info
genhtml lcov.info -o coverage_report --frame --legend --demangle-cpp
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Coverage results
path: coverage_report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ jobs:
# -isystem/usr/lib/clang/17/include
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
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: Compilation Database
path: ./cmake.output/compile_commands.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: Logs (include-what-you-use)
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
# TODO: run multi-threaded
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
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Logs (clang-include-cleaner)
path: ./*.log
6 changes: 3 additions & 3 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ jobs:
echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel!
msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel!
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: installer
path: win_installer/Build/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: deploy
path: win_installer\files
Expand All @@ -162,7 +162,7 @@ jobs:
del win_installer\files\Qt5Svg.dll || exit /b !errorlevel!
del win_installer\files\vc_redist.x64.exe || exit /b !errorlevel!
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: portable
path: win_installer\files
2 changes: 1 addition & 1 deletion .github/workflows/selfcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
env:
DISABLE_VALUEFLOW: 1

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Callgrind Output
path: ./callgrind.*
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
#env:
# DEBUGINFOD_URLS: https://debuginfod.ubuntu.com

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: Logs
Expand Down

0 comments on commit 528a835

Please sign in to comment.