Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix use GITHUB_OUTPUT from deprecated set-output #2492

Merged
merged 11 commits into from Oct 12, 2022
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -48,8 +48,8 @@ jobs:
# Get values for cache paths to be used in later steps
- id: cache-paths
run: |
echo "::set-output name=go-cache::$(go env GOCACHE)"
echo "::set-output name=go-mod-cache::$(go env GOMODCACHE)"
echo "go-cache=$(go env GOCACHE) >> $GITHUB_OUTPUT"
k1rnt marked this conversation as resolved.
Show resolved Hide resolved
echo "go-mod-cache=$(go env GOMODCACHE) >> $GITHUB_OUTPUT"
k1rnt marked this conversation as resolved.
Show resolved Hide resolved

- name: Cache go modules
uses: actions/cache@v3
Expand Down