Skip to content

Commit

Permalink
Update ci.yml - Add dist-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmair authored Dec 29, 2024
1 parent 058983b commit 73efa80
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:

steps:
- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libsystemd-dev libev-dev libfmt-dev libinih-dev
run: |
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get install -y --no-install-recommends libusb-1.0-0-dev libsystemd-dev libev-dev libfmt-dev libinih-dev
- uses: actions/checkout@v4
with:
Expand All @@ -42,7 +45,10 @@ jobs:

steps:
- name: Install build dependencies
run: apk update && apk add git build-base autoconf automake libtool argp-standalone linux-headers libusb-dev libev-dev fmt-dev inih-dev
run: |
apk update
apk upgrade
apk add git build-base autoconf automake libtool argp-standalone linux-headers libusb-dev libev-dev fmt-dev inih-dev
- name: Configure git in container
run: |
Expand Down Expand Up @@ -79,7 +85,7 @@ jobs:
- name: Install dependencies
run: |
apt-get update
apt-get upgrade -y
apt-get dist-upgrade -y
apt-get install -y --no-install-recommends ca-certificates git sudo
- name: Configure git in container
Expand Down

0 comments on commit 73efa80

Please sign in to comment.