Switch checkout & upload-artifact actions to v3 (node12-16 warning)

This commit is contained in:
2023-09-22 23:21:36 -05:00
parent 0ac52435aa
commit 8a88a7bf8d

View File

@@ -26,7 +26,7 @@ jobs:
- name: List files in Qt - name: List files in Qt
run: find ${{env.Qt5_Dir}} run: find ${{env.Qt5_Dir}}
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Configure CMake - name: Configure CMake
run: cmake -B '${{github.workspace}}'/build run: cmake -B '${{github.workspace}}'/build
@@ -54,7 +54,7 @@ jobs:
-appimage -verbose=2 -extra-plugins=iconengines -appimage -verbose=2 -extra-plugins=iconengines
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v3
with: with:
name: TestTaker-linux-appimage name: TestTaker-linux-appimage
path: TestTaker*.AppImage path: TestTaker*.AppImage
@@ -79,7 +79,7 @@ jobs:
install-deps: "true" install-deps: "true"
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Build for Windows - name: Build for Windows
shell: bash shell: bash
@@ -101,7 +101,7 @@ jobs:
windeployqt.exe -svg --release --no-compiler-runtime --no-opengl-sw --no-translations TestTaker.exe windeployqt.exe -svg --release --no-compiler-runtime --no-opengl-sw --no-translations TestTaker.exe
# 7z a -r ../${APPNAME} * # 7z a -r ../${APPNAME} *
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: TestTaker-windows name: TestTaker-windows
path: packageDir/* path: packageDir/*