.github/workflows/wolfCrypt-Wconversion.yml: fix apt-get to update first.

This commit is contained in:
Daniel Pouzzner
2025-05-30 13:56:14 -05:00
parent 6a5dc482fd
commit 8256e42178

View File

@ -35,7 +35,10 @@ jobs:
name: Checkout wolfSSL
- name: install_multilib
run: sudo apt-get install -y gcc-multilib
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y gcc-multilib
- name: Build wolfCrypt with extra type conversion warnings
run: |