Skip to content

Commit

Permalink
Chore: Upgrade github actions/upload-artifact and actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
yestalgia authored Apr 30, 2024
1 parent 571ff72 commit e4167c1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: ["push", "pull_request"]
jobs:
build-linux:
#if: false
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: QLCplus Linux ${{matrix.task}}
strategy:
#fail-fast: false
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: false

Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
version: ${{runner.os}}-apt

- name: Install Qt through aqt (and python)
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: ${{ env.QT_VERSION }}
cache: true
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
- name: Store original install artifacts before stripping and AppImage
# Activate for debugging
if: ${{ false && ! startsWith( matrix.task, 'coverage') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.task }}-files
path: ${{ env.INSTALL_ROOT }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
- name: Store AppImage artifacts
if: ${{ ! startsWith( matrix.task, 'coverage') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.task }}-AppImage
path: qlcplus-${{env.TASK}}-${{env.APPVERSION}}-${{env.BUILD_DATE}}-${{env.GIT_REV}}.AppImage
Expand All @@ -271,7 +271,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: false

Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
mv /c/qlcplus/${{env.OUTFILE}} /d/a/qlcplus/qlcplus
- name: Store executable artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QLC+-${{env.TASK}}-${{env.APPVERSION}}-${{env.BUILD_DATE}}-${{env.GIT_REV}}.exe
path: ${{env.OUTFILE}}

0 comments on commit e4167c1

Please sign in to comment.