Skip to content

Commit 1f59f3a

Browse files
authored
add sudo apt-get update before sudo apt install (#212)
* add sudo apt-get update before sudo apt install * change to sudo apt update * apt-get update
1 parent 3fdc58f commit 1f59f3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ jobs:
100100
- name: Install Serverless Framework
101101
run: sudo yarn global add serverless@^2.72.2 --prefix /usr/local
102102
- name: Install Crossbuild Deps
103-
run: sudo apt install -y qemu-user-static binfmt-support
103+
run: |
104+
sudo apt-get update
105+
sudo apt install -y qemu-user-static binfmt-support
104106
105107
- name: Install dependencies
106108
if: steps.cache-node-modules.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)