Skip to content

Commit 92795fb

Browse files
author
Daniel Chalef
committed
update action to use GITHUB_OUTPUT
1 parent f1e1f7d commit 92795fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
# Get values for cache paths to be used in later steps
1919
- id: go-cache-paths
2020
run: |
21-
echo "::set-output name=go-build::$(go env GOCACHE)"
22-
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
21+
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
22+
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
2323
2424
- uses: actions/checkout@v3
2525

0 commit comments

Comments
 (0)