Skip to content

Commit

Permalink
Fix updated GH actions (use @V3 for linux builds)
Browse files Browse the repository at this point in the history
See actions/checkout#1590

Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Jan 29, 2024
1 parent 5c7f1d4 commit b73d715
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
rm *.deb
;;
esac
- uses: actions/checkout@v4
# NOTE cannot use actions/checkout@v4, incompatible with ubuntu:18.04
# see https://github.com/actions/checkout/issues/1590
# https://github.com/moddevices/mod-desktop-app/actions/runs/7697857575/job/20975801114
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up dependencies
Expand All @@ -60,9 +63,11 @@ jobs:
freetypepkgname="libfreetype-dev"
fi
apt-get install -yqq ${freetypepkgname} p7zip-full unzip wget xdg-user-dirs zip
# NOTE cannot use actions/cache@v3, incompatible with ubuntu:18.04
# https://github.com/moddevices/mod-desktop-app/actions/runs/7698414056/job/20977633093
- name: Set up cache
id: cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
~/PawPawBuilds
Expand Down

0 comments on commit b73d715

Please sign in to comment.