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