Skip to content

Commit

Permalink
Fix: update actions/upload-artifact version to resolve deprecation …
Browse files Browse the repository at this point in the history
  • Loading branch information
federicovilla55 authored Dec 7, 2024
1 parent 882d482 commit f641a74
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "Clang-format found no formatting problems"
exit 0
- name: Upload clang-format patch
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ failure() }}
# Unfortunately, artifact uploads are always zips :(
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract-and-run appdir/usr/share/applications/*.desktop \
-appimage -verbose=2 -extra-plugins=iconengines
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build-type }}_executable
path: Ripes*.AppImage*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
sudo mv Ripes.app ${APPNAME}.app
sudo zip -r ${APPNAME}.zip ${APPNAME}.app/
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build-type }}_executable
path: ${{ env.APPNAME }}.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
.
make -j $(nproc)
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build-type }}_wasm
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
--no-compiler-runtime --no-opengl-sw --no-translations Ripes.exe
7z a -r ../${APPNAME} *
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build-type }}_executable
path: ${{ env.APPNAME }}
Expand Down

0 comments on commit f641a74

Please sign in to comment.