[CI] Run apt-get update before install (#989)

This commit is contained in:
Jan Gromeš 2024-02-27 17:16:33 +01:00 committed by GitHub
parent 9f0bdffc50
commit 5c30bb1e32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -189,7 +189,9 @@ jobs:
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
run: |
sudo apt-get update
sudo apt-get install -y git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
- name: Clone ESP-IDF
run: |