Merge pull request #64 from randshell/actions-update

Update Github Actions to latest version
This commit is contained in:
Aurélien Hamy 2024-06-23 20:09:26 +02:00 committed by GitHub
commit c65da965f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View File

@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout repo - name: checkout repo
uses: actions/checkout@v2 uses: actions/checkout@v4
- uses: actions/setup-node@v2 - uses: actions/setup-node@v4
with: with:
node-version: 18 node-version: 20
- name: install_deps - name: install_deps
run: make install_deps run: make install_deps
@ -44,7 +44,7 @@ jobs:
run: echo "$(sha256sum artifacts/{x64,arm64}/*.{deb,rpm,AppImage,tar.xz})" > sha256 run: echo "$(sha256sum artifacts/{x64,arm64}/*.{deb,rpm,AppImage,tar.xz})" > sha256
- name: create release - name: create release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v2
with: with:
tag_name: ${{ env.version }} tag_name: ${{ env.version }}
body: 'Update to version ${{ env.version }}' body: 'Update to version ${{ env.version }}'

View File

@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout repo - name: checkout repo
uses: actions/checkout@v2 uses: actions/checkout@v4
- uses: actions/setup-node@v2 - uses: actions/setup-node@v4
with: with:
node-version: 18 node-version: 20
- name: install_deps - name: install_deps
run: make install_deps run: make install_deps
@ -21,11 +21,11 @@ jobs:
- name: build_appimage_arm64 - name: build_appimage_arm64
run: make build_appimage_arm64 run: make build_appimage_arm64
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: deezer-desktop-nightly-build-x64.AppImage name: deezer-desktop-nightly-build-x64.AppImage
path: artifacts/x64/deezer-desktop-*.AppImage path: artifacts/x64/deezer-desktop-*.AppImage
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: deezer-desktop-nightly-build-arm64.AppImage name: deezer-desktop-nightly-build-arm64.AppImage
path: artifacts/arm64/deezer-desktop-*.AppImage path: artifacts/arm64/deezer-desktop-*.AppImage