From 8ac5f6c16d0969e91e55d618e6e72cd16606e5e4 Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Thu, 24 Dec 2020 14:03:48 +0000 Subject: [PATCH] github: workflows: Fix add-path problems Signed-off-by: Daniel Thompson --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a63433..35acd9c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,9 @@ jobs: id: install-toolchain # installs arm-none-eabi if the CI environment can't find it in the cache if: steps.cache-toolchain.outputs.cache-hit != 'true' - uses: fiam/arm-none-eabi-gcc@v1.0.2 + # Currently v1.0.2 is the latest version... but it is from July 2020 + # and is currently broken. Use a newer version instead. + uses: fiam/arm-none-eabi-gcc@162d71c10065d706b8a07a2f27d7628cad82e4e3 with: release: 9-2019-q4 directory: ${{ runner.temp }}/arm-none-eabi