Skip to content

Commit

Permalink
Remove usage of ::set-output in Actions workflows (#239)
Browse files Browse the repository at this point in the history
This feature is deprecated in favor of the GITHUB_OUTPUT file.
  • Loading branch information
bluekeyes authored Jan 24, 2024
1 parent da30681 commit 2361c36
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,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@v5
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,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@v5

0 comments on commit 2361c36

Please sign in to comment.