Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

ci: Use GITHUB_OUTPUT envvar instead of set-output command #94

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -49,8 +49,8 @@ jobs:
printf "\n\nSystem environment:\n\n"
env
# Calculate the short SHA1 hash of the git commit
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
echo "::set-output name=go_cache::$(go env GOCACHE)"
echo "short_sha=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
echo "go_cache=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"

# - name: Cache the build cache
# uses: actions/cache@v2
Expand Down