Skip to content

Commit 8256e42

Browse files
committed
.github/workflows/wolfCrypt-Wconversion.yml: fix apt-get to update first.
1 parent 6a5dc48 commit 8256e42

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/wolfCrypt-Wconversion.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
name: Checkout wolfSSL
3636

3737
- name: install_multilib
38-
run: sudo apt-get install -y gcc-multilib
38+
run: |
39+
export DEBIAN_FRONTEND=noninteractive
40+
sudo apt-get update
41+
sudo apt-get install -y gcc-multilib
3942
4043
- name: Build wolfCrypt with extra type conversion warnings
4144
run: |

0 commit comments

Comments
 (0)