We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f65ab commit 3344412Copy full SHA for 3344412
.github/workflows/tests.yml
@@ -48,8 +48,9 @@ jobs:
48
# Get values for cache paths to be used in later steps
49
- id: cache-paths
50
run: |
51
- echo "::set-output name=go-cache::$(go env GOCACHE)"
52
- echo "::set-output name=go-mod-cache::$(go env GOMODCACHE)"
+ echo "go-cache=$(go env GOCACHE)" >> $GITHUB_OUTPUT
+ echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
53
+ shell: bash
54
55
- name: Cache go modules
56
uses: actions/cache@v3
0 commit comments