Skip to content

Commit

Permalink
Merge pull request mcallegari#1557 from yestalgia/fix/deprecated-node…
Browse files Browse the repository at this point in the history
…js-actions

Fix deprecated nodejs16 actions
  • Loading branch information
mcallegari authored Apr 30, 2024
2 parents 571ff72 + ef8b66e commit 375ff79
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
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 @@ -176,10 +176,11 @@ jobs:

- name: Coveralls
if: ${{ startsWith( matrix.task, 'coverage') }}
uses: coverallsapp/github-action@1.1.3
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/coverage.info
file: coverage/coverage.info
format: lcov

- name: Install
if: ${{ ! startsWith( matrix.task, 'coverage') }}
Expand All @@ -202,7 +203,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 +247,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 +272,7 @@ jobs:

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

Expand Down Expand Up @@ -436,7 +437,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 375ff79

Please sign in to comment.