Skip to content

Commit

Permalink
[CI] Run apt-get update before install (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes authored Feb 27, 2024
1 parent 9f0bdff commit 5c30bb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 5c30bb1

Please sign in to comment.