Skip to content

Commit

Permalink
chore(CI): Avoid using deprecated '::set-output' command in GitHub Ac…
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed May 11, 2023
1 parent bb0479a commit 923c17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: golangci_lint_version
run: |
golangCiLintVersion=$(grep '^golangci-lint ' .tool-versions | awk '{print $2}')
echo "::set-output name=golangCiLintVersion::${golangCiLintVersion}"
echo "golangCiLintVersion=${golangCiLintVersion}" >> $GITHUB_OUTPUT
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id: golang_version
run: |
golangVersion=$(grep '^golang ' .tool-versions | awk '{print $2}')
echo "::set-output name=golangVersion::${golangVersion}"
echo "golangVersion=${golangVersion}" >> $GITHUB_OUTPUT
- uses: cli/gh-extension-precompile@v1
with:
Expand Down

0 comments on commit 923c17b

Please sign in to comment.