diff options
Diffstat (limited to '.github/workflows/build_msp430.yml')
| -rw-r--r-- | .github/workflows/build_msp430.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build_msp430.yml b/.github/workflows/build_msp430.yml index b43d9e740..1ef25a6a0 100644 --- a/.github/workflows/build_msp430.yml +++ b/.github/workflows/build_msp430.yml @@ -16,9 +16,12 @@ jobs: family: # Alphabetical order - 'msp430' + steps: - name: Setup Python uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Checkout TinyUSB uses: actions/checkout@v3 @@ -36,7 +39,7 @@ jobs: run: echo >> $GITHUB_ENV TOOLCHAIN_URL=http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/9_2_0_0/export/msp430-gcc-9.2.0.50_linux64.tar.bz2 - name: Cache Toolchain - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-toolchain with: path: ~/cache/ |
