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 2020
2121 - name : Get Go cache paths
2222 id : go-cache-paths
23+ shell : bash
2324 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
2627
2728 - name : Go build cache
2829 uses : actions/cache@v4
Original file line number Diff line number Diff line change 3939
4040 - name : Echo Go Cache Paths
4141 id : go-cache-paths
42+ shell : bash
4243 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
4546
4647 - name : Go Build Cache
4748 uses : actions/cache@v4
You can’t perform that action at this time.
0 commit comments