Skip to content

Commit

Permalink
ci: execute "apt update" before the first "apt install"
Browse files Browse the repository at this point in the history
Apparently, the base image of the Github CI runner is not update very often, and
does not keep up with the evolving list of mirrors.

Without this change the "apt install" command starts to hit 404s.
  • Loading branch information
muxator committed Nov 16, 2023
1 parent f318aab commit 0aef990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-itcoin-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Install the build toolchain (gcc-12)
run: |
sudo apt install --no-install-recommends -y \
sudo apt update && apt install --no-install-recommends -y \
autoconf \
automake \
bsdextrautils \
Expand Down

0 comments on commit 0aef990

Please sign in to comment.