Skip to content

Commit

Permalink
github-actions - Replace deprecated command with env file (elastic#140)
Browse files Browse the repository at this point in the history
Use environment file instead of deprecated set-output command.
  • Loading branch information
jongwooo authored Aug 23, 2023
1 parent 006b41f commit 23d6218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Read .go-version file
id: goversion
run: echo "::set-output name=version::$(cat .go-version)"
run: echo "version=$(cat .go-version)" >> $GITHUB_OUTPUT

- uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit 23d6218

Please sign in to comment.