From 3a8e54349128942b07692b3968444f647afde109 Mon Sep 17 00:00:00 2001 From: Alexander Heinrich Date: Thu, 4 Nov 2021 12:50:10 +0100 Subject: [PATCH] Using the ESP32 v4.3 branch and not the release since the release is still failing to build --- .github/actions/build-esp-idf/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-esp-idf/action.yaml b/.github/actions/build-esp-idf/action.yaml index 9a54378..1eb1aca 100644 --- a/.github/actions/build-esp-idf/action.yaml +++ b/.github/actions/build-esp-idf/action.yaml @@ -20,7 +20,7 @@ runs: sudo apt install git wget flex bison gperf python3 python3-pip python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0 mkdir -p /opt/esp cd /opt/esp - git clone --recursive --depth 1 --branch v4.3.1 https://github.com/espressif/esp-idf.git + git clone --recursive --depth 1 --branch release/v4.3 https://github.com/espressif/esp-idf.git cd /opt/esp/esp-idf ./install.sh - name: Build firmware