Skip to content

Commit 42a4546

Browse files
committed
chore: move away from set-output in GitHub Actions
This is deprecated! See: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent 0ba200c commit 42a4546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ jobs:
260260
- name: Echo Go Cache Paths
261261
id: go-cache-paths
262262
run: |
263-
echo "::set-output name=GOCACHE::$(go env GOCACHE)"
264-
echo "::set-output name=GOMODCACHE::$(go env GOMODCACHE)"
263+
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_OUTPUT
264+
echo "GOMODCACHE=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
265265
266266
- name: Go Build Cache
267267
uses: actions/cache@v3

0 commit comments

Comments
 (0)