From 128aa89cad2699d2deb92693ea5f37e60abd6578 Mon Sep 17 00:00:00 2001 From: Ashley Eastwood <5272023+aeastw@users.noreply.github.com> Date: Fri, 4 Jun 2021 23:51:09 +0100 Subject: [PATCH] Use newer version of gcc install action Githib changed the way that things can be added to the PATH. (https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/) This commit updates the fiam/arm-none-eabi-action to a version that includes the new way of adding the toolchain to the PATH --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a71b7e08e..0c317dede5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: - name: Install Embedded Arm Toolchain arm-none-eabi-gcc if: steps.cache-toolchain.outputs.cache-hit != 'true' # Install toolchain if not found in cache - uses: fiam/arm-none-eabi-gcc@v1.0.2 + uses: fiam/arm-none-eabi-gcc@v1.0.4 with: # GNU Embedded Toolchain for Arm release name, in the V-YYYY-qZ format (e.g. "9-2019-q4") release: 9-2020-q2