Skip to content

Commit 47804d6

Browse files
committed
ci: 🤖 use new syntax for setting output
1 parent 4cf7665 commit 47804d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nx-migrate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
IS_OUTDATED=$(test ! -z "$(npm outdated @nrwl/workspace)" && echo true || echo false)
2222
echo $IS_OUTDATED
23-
echo "::set-output name=outdated::$IS_OUTDATED"
23+
echo "outdated=$IS_OUTDATED" >> $GITHUB_OUTPUT
2424
2525
- name: Update @nrwl/workspace
2626
if: steps.nrwl-workspace-outdated.outputs.outdated == 'true'
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
HAS_MIGRATIONS=$(test -f migrations.json && echo true || echo false)
3737
echo $HAS_MIGRATIONS
38-
echo "::set-output name=has_migrations::$HAS_MIGRATIONS"
38+
echo "has_migrations=$HAS_MIGRATIONS" >> $GITHUB_OUTPUT
3939
4040
- name: Run @nrwl/workspace migrations
4141
if: steps.nrwl-workspace-has-migrations.outputs.has_migrations == 'true'

0 commit comments

Comments
 (0)