From 230b3b9b6ed3fb73f6f7d6e0f933915012e7c806 Mon Sep 17 00:00:00 2001 From: Pierre Avital Date: Mon, 21 Aug 2023 18:43:13 +0200 Subject: [PATCH] fix platformio _again_ --- .github/workflows/arduino_esp32.yaml | 3 ++- .github/workflows/espidf.yaml | 3 ++- .github/workflows/mbed.yaml | 3 ++- .github/workflows/zephyr.yaml | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/arduino_esp32.yaml b/.github/workflows/arduino_esp32.yaml index 5b313a503..197ce7776 100644 --- a/.github/workflows/arduino_esp32.yaml +++ b/.github/workflows/arduino_esp32.yaml @@ -37,7 +37,8 @@ jobs: - name: Install PlatformIO run: | - python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py)" + curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py + python3 get-platformio.py . $HOME/.platformio/penv/bin/activate platformio update diff --git a/.github/workflows/espidf.yaml b/.github/workflows/espidf.yaml index c8b037449..6f46eb0e4 100644 --- a/.github/workflows/espidf.yaml +++ b/.github/workflows/espidf.yaml @@ -37,7 +37,8 @@ jobs: - name: Install PlatformIO run: | - python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py)" + curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py + python3 get-platformio.py . $HOME/.platformio/penv/bin/activate platformio update diff --git a/.github/workflows/mbed.yaml b/.github/workflows/mbed.yaml index b4cc500f2..03386d06e 100644 --- a/.github/workflows/mbed.yaml +++ b/.github/workflows/mbed.yaml @@ -37,7 +37,8 @@ jobs: - name: Install PlatformIO run: | - python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py)" + curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py + python3 get-platformio.py . $HOME/.platformio/penv/bin/activate platformio update diff --git a/.github/workflows/zephyr.yaml b/.github/workflows/zephyr.yaml index 32136c638..7ec080212 100644 --- a/.github/workflows/zephyr.yaml +++ b/.github/workflows/zephyr.yaml @@ -37,7 +37,8 @@ jobs: - name: Install PlatformIO run: | - python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py)" + curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py + python3 get-platformio.py . $HOME/.platformio/penv/bin/activate platformio update