Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya authored Jan 2, 2024
1 parent 41c5834 commit d270372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: go_version
run: |
GO_VERSION=$(cat .palantir/go-version | sed 's/^go//' )
echo "::set-output name=version::${GO_VERSION}"
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@v2
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
id: go_version
run: |
GO_VERSION=$(cat .palantir/go-version | sed 's/^go//' )
echo "::set-output name=version::${GO_VERSION}"
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@v2
Expand Down

0 comments on commit d270372

Please sign in to comment.