We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb0479a commit 923c17bCopy full SHA for 923c17b
.github/workflows/lint.yml
@@ -25,7 +25,7 @@ jobs:
25
id: golangci_lint_version
26
run: |
27
golangCiLintVersion=$(grep '^golangci-lint ' .tool-versions | awk '{print $2}')
28
- echo "::set-output name=golangCiLintVersion::${golangCiLintVersion}"
+ echo "golangCiLintVersion=${golangCiLintVersion}" >> $GITHUB_OUTPUT
29
30
- name: golangci-lint
31
uses: golangci/[email protected]
.github/workflows/release.yml
@@ -16,7 +16,7 @@ jobs:
16
id: golang_version
17
18
golangVersion=$(grep '^golang ' .tool-versions | awk '{print $2}')
19
- echo "::set-output name=golangVersion::${golangVersion}"
+ echo "golangVersion=${golangVersion}" >> $GITHUB_OUTPUT
20
21
- uses: cli/gh-extension-precompile@v1
22
with:
0 commit comments