Skip to content

Commit 6046372

Browse files
authored
Merge pull request #1810 from mmorel-35/set-output
fix: deprecated set-output
2 parents 9ef02b7 + a1e91b8 commit 6046372

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- id: versions
2323
run: |
2424
versions=$(curl -s 'https://go.dev/dl/?mode=json' | jq -c 'map(.version[2:])')
25-
echo "::set-output name=value::${versions}"
25+
echo "value=${versions}" >> $GITHUB_OUTPUT
2626
build_test:
2727
needs: go-versions
2828
strategy:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- id: versions
2323
run: |
2424
versions=$(curl -s 'https://go.dev/dl/?mode=json' | jq -c 'map(.version[2:])')
25-
echo "::set-output name=value::${versions}"
25+
echo "value=${versions}" >> $GITHUB_OUTPUT
2626
test:
2727
needs: go-versions
2828
strategy:

0 commit comments

Comments
 (0)