Skip to content

Commit b9f7a97

Browse files
committed
build: use $GITHUB_OUTPUT for environment list
1 parent 546969d commit b9f7a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
echo "node@$(node -v)"
156156
echo "npm@$(npm -v)"
157157
npm -s ls ||:
158-
(npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print "::set-output name=" $2 "::" $3 }'
158+
(npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print $2 "=" $3 }' >> "$GITHUB_OUTPUT"
159159
160160
- name: Run tests
161161
shell: bash

0 commit comments

Comments
 (0)