Skip to content

Commit

Permalink
Update build_release.yml
Browse files Browse the repository at this point in the history
node v3->v4
  • Loading branch information
rmuehl authored May 26, 2024
1 parent d2713f1 commit 29bbe34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
run: sudo apt-get update && sudo apt-get -y install build-essential gcc-multilib g++-multilib mingw-w64 libgl1-mesa-dev libglu1-mesa-dev libx11-dev qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools qt5-qmake libasound2-dev libportaudio2 libpulse-dev ffmpeg libxcursor-dev
- name: Restore libacfutils dep cache
id: restore_libacfutils_dep_cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
src/libacfutils/zlib
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Archive files
run: zip -r BetterPushBack_lin_win.zip BetterPushback
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: BetterPushBack_lin_win.zip
path: BetterPushBack_lin_win.zip
Expand All @@ -65,7 +65,7 @@ jobs:
prerelease: true
- name: Save libacfutils dep cache
id: save_libacfutils_dep_cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
src/libacfutils/zlib
Expand All @@ -87,4 +87,4 @@ jobs:
src/libacfutils/cglm
src/libacfutils/geographiclib
src/libacfutils/lzma
key: ${{ steps.restore_libacfutils_dep_cache.outputs.cache-primary-key }}
key: ${{ steps.restore_libacfutils_dep_cache.outputs.cache-primary-key }}

0 comments on commit 29bbe34

Please sign in to comment.