File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v4
14- - uses : asdf-vm/actions/install@v3
14+
15+ - name : Setup ASDF itself
16+ uses : asdf-vm/actions/setup@v3
17+ - name : Cache ASDF
18+ uses : actions/cache@v4
19+ id : asdf-cache
20+ with :
21+ # https://github.com/asdf-vm/asdf/blob/master/.gitignore
22+ path : |
23+ ~/.asdf/installs
24+ ~/.asdf/plugins
25+ ~/.asdf/shims
26+ key : ${{ runner.os }}-asdf-tools-${{ hashFiles('.tool-versions') }}
27+ restore-keys : ${{ runner.os }}-asdf-tools-
28+ - name : Install ASDF plugins
29+ uses : asdf-vm/actions/install@v3
30+ if : ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
31+ - name : Reshim installed ASDF tools
32+ shell : bash
33+ run : asdf reshim
34+
1535 - name : Cache local Maven repository
1636 uses : actions/cache@v4
1737 with :
You can’t perform that action at this time.
0 commit comments