summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-24 14:03:48 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-24 14:14:39 (GMT)
commit8ac5f6c16d0969e91e55d618e6e72cd16606e5e4 (patch)
treeee4d7e68c31850f30ad417ab7858c8c742b8a6b3 /.github
parent88246469397ea4533ec697643f1ecad1224ac081 (diff)
github: workflows: Fix add-path problems
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml4
1 files changed, 3 insertions, 1 deletions
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