diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 833564ab..be7bef7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,15 @@ jobs: path: ~/.asdf key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }} id: asdf-cache - - uses: mbta/actions/reshim-asdf@v2 - # The asdf job should have prepared the cache. exit if it didn't for some reason - - run: exit 1 + - name: Exit if ASDF cache isn't setup + run: exit 1 if: steps.asdf-cache.outputs.cache-hit != 'true' + - name: Setup ASDF environment + uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1 + with: + skip_install: true + - name: Reshim ASDF + run: asdf reshim - name: Restore dependencies cache id: deps-cache uses: actions/cache@v6.1.0