We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 065c6b2 commit 9e0b1dfCopy full SHA for 9e0b1df
1 file changed
.github/workflows/node-test.yaml
@@ -164,9 +164,9 @@ jobs:
164
run: |
165
if [ -f package-lock.json ] || [ -f npm-shrinkwrap.json ] || [ -f yarn.lock ]
166
then
167
- echo "::set-output name=install-command::npm ci"
+ echo "install-command=npm ci" >> $GITHUB_OUTPUT
168
else
169
- echo "::set-output name=install-command::npm install"
+ echo "install-command=npm install" >> $GITHUB_OUTPUT
170
fi
171
172
- name: Install dependencies
@@ -201,7 +201,7 @@ jobs:
201
)
202
203
# output the merged variables
204
- echo "::set-output name=env-vars::${MERGED_VARS}"
+ echo "env-vars=${MERGED_VARS}" >> $GITHUB_OUTPUT
205
env:
206
INPUT_VARS: ${{ secrets.test-secrets || '{}' }}
207
0 commit comments