File tree Expand file tree Collapse file tree 3 files changed +26
-200
lines changed Expand file tree Collapse file tree 3 files changed +26
-200
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
- name : Checkout code
14
14
uses : actions/checkout@v4
15
15
16
- - name : Setup tools from .tool-versions
17
- uses : ./.github/actions/setup-tools
16
+ - name : Install asdf
17
+ uses : asdf-vm/actions/setup@v4
18
+
19
+ - name : Tools cache
20
+ id : asdf-cache
21
+ uses : actions/cache@v4
22
+ with :
23
+ path : ~/.asdf/
24
+ key : ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
25
+
26
+ - name : Install tools from .tool-versions
27
+ if : steps.asdf-cache.outputs.cache-hit != 'true'
28
+ uses : asdf-vm/actions/install@v4
18
29
19
30
- name : Install dependencies
20
31
run : bun install --frozen-lockfile
34
45
- name : Checkout code
35
46
uses : actions/checkout@v4
36
47
37
- - name : Setup tools from .tool-versions
38
- uses : ./.github/actions/setup-tools
48
+ - name : Install asdf
49
+ uses : asdf-vm/actions/setup@v4
50
+
51
+ - name : Tools cache
52
+ id : asdf-cache
53
+ uses : actions/cache@v4
54
+ with :
55
+ path : ~/.asdf/
56
+ key : ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
57
+
58
+ - name : Install tools
59
+ if : steps.asdf-cache.outputs.cache-hit != 'true'
60
+ uses : asdf-vm/actions/install@v4
39
61
40
62
- name : Setup ccache
41
63
uses : hendrikmuhs/ccache-action@v1.2
You can’t perform that action at this time.
0 commit comments