Skip to content

Commit

Permalink
github: workflows: Fix add-path problems
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
  • Loading branch information
daniel-thompson committed Dec 24, 2020
1 parent 8824646 commit 8ac5f6c
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 @@ -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
Expand Down

1 comment on commit 8ac5f6c

@Kozova1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this one! So that's why I had trouble with setting up actions for my repo.

Please sign in to comment.