File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 20
20
21
21
- name : Get Go cache paths
22
22
id : go-cache-paths
23
+ shell : bash
23
24
run : |
24
- echo "::set-output name= go-build:: $(go env GOCACHE)"
25
- echo "::set-output name= go-mod:: $(go env GOMODCACHE)"
25
+ echo "go-build= $(go env GOCACHE)" >> $GITHUB_OUTPUT
26
+ echo "go-mod= $(go env GOMODCACHE)" >> $GITHUB_OUTPUT
26
27
27
28
- name : Go build cache
28
29
uses : actions/cache@v4
Original file line number Diff line number Diff line change 39
39
40
40
- name : Echo Go Cache Paths
41
41
id : go-cache-paths
42
+ shell : bash
42
43
run : |
43
- echo "::set-output name= go-build:: $(go env GOCACHE)"
44
- echo "::set-output name= go-mod:: $(go env GOMODCACHE)"
44
+ echo "go-build= $(go env GOCACHE)" >> $GITHUB_OUTPUT
45
+ echo "go-mod= $(go env GOMODCACHE)" >> $GITHUB_OUTPUT
45
46
46
47
- name : Go Build Cache
47
48
uses : actions/cache@v4
You can’t perform that action at this time.
0 commit comments