We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
apt-get update
apt-get install
1 parent 3c145c9 commit ff973acCopy full SHA for ff973ac
.github/actions/setup-target/action.yml
@@ -43,7 +43,7 @@ runs:
43
if: inputs.arch != 'x86_64'
44
shell: bash
45
run: |
46
- sudo apt install -y \
+ sudo apt-get update && sudo apt-get install -y \
47
curl \
48
gcc-aarch64-linux-gnu \
49
gcc-arm-linux-gnueabihf \
@@ -59,7 +59,8 @@ runs:
59
- name: Install dependencies (x86_64 linux)
60
if: inputs.target == 'x86_64-unknown-linux-gnu' || inputs.target == 'x86_64-unknown-linux-musl'
61
62
- run: sudo apt-get install musl-tools libudev-dev
+ run: |
63
+ sudo apt-get update && sudo apt-get install musl-tools libudev-dev
64
65
- name: Set environment variables
66
0 commit comments