Skip to content

Commit

Permalink
Merge pull request #64 from randshell/actions-update
Browse files Browse the repository at this point in the history
Update Github Actions to latest version
  • Loading branch information
aunetx authored Jun 23, 2024
2 parents 755bd40 + aafecf1 commit c65da96
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- uses: actions/setup-node@v2
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: install_deps
run: make install_deps
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
run: echo "$(sha256sum artifacts/{x64,arm64}/*.{deb,rpm,AppImage,tar.xz})" > sha256

- name: create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.version }}
body: 'Update to version ${{ env.version }}'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- uses: actions/setup-node@v2
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: install_deps
run: make install_deps
Expand All @@ -21,11 +21,11 @@ jobs:
- name: build_appimage_arm64
run: make build_appimage_arm64

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: deezer-desktop-nightly-build-x64.AppImage
path: artifacts/x64/deezer-desktop-*.AppImage
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: deezer-desktop-nightly-build-arm64.AppImage
path: artifacts/arm64/deezer-desktop-*.AppImage

0 comments on commit c65da96

Please sign in to comment.