Skip to content

Commit f641a74

Browse files
Fix: update actions/upload-artifact version to resolve deprecation of artifact action as announced: (#381)
https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
1 parent 882d482 commit f641a74

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/clang-format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "Clang-format found no formatting problems"
3030
exit 0
3131
- name: Upload clang-format patch
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@v4
3333
if: ${{ failure() }}
3434
# Unfortunately, artifact uploads are always zips :(
3535
with:

.github/workflows/linux-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract-and-run appdir/usr/share/applications/*.desktop \
7272
-appimage -verbose=2 -extra-plugins=iconengines
7373
74-
- uses: actions/upload-artifact@v2
74+
- uses: actions/upload-artifact@v4
7575
with:
7676
name: ${{ matrix.build-type }}_executable
7777
path: Ripes*.AppImage*

.github/workflows/mac-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
sudo mv Ripes.app ${APPNAME}.app
6060
sudo zip -r ${APPNAME}.zip ${APPNAME}.app/
6161
62-
- uses: actions/upload-artifact@v2
62+
- uses: actions/upload-artifact@v4
6363
with:
6464
name: ${{ matrix.build-type }}_executable
6565
path: ${{ env.APPNAME }}.zip

.github/workflows/wasm-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
.
9292
make -j $(nproc)
9393
94-
- uses: actions/upload-artifact@v2
94+
- uses: actions/upload-artifact@v4
9595
with:
9696
name: ${{ matrix.build-type }}_wasm
9797
path: |

.github/workflows/windows-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
--no-compiler-runtime --no-opengl-sw --no-translations Ripes.exe
5555
7z a -r ../${APPNAME} *
5656
57-
- uses: actions/upload-artifact@v2
57+
- uses: actions/upload-artifact@v4
5858
with:
5959
name: ${{ matrix.build-type }}_executable
6060
path: ${{ env.APPNAME }}

0 commit comments

Comments
 (0)