We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf7665 commit 47804d6Copy full SHA for 47804d6
.github/workflows/nx-migrate.yml
@@ -20,7 +20,7 @@ jobs:
20
run: |
21
IS_OUTDATED=$(test ! -z "$(npm outdated @nrwl/workspace)" && echo true || echo false)
22
echo $IS_OUTDATED
23
- echo "::set-output name=outdated::$IS_OUTDATED"
+ echo "outdated=$IS_OUTDATED" >> $GITHUB_OUTPUT
24
25
- name: Update @nrwl/workspace
26
if: steps.nrwl-workspace-outdated.outputs.outdated == 'true'
@@ -35,7 +35,7 @@ jobs:
35
36
HAS_MIGRATIONS=$(test -f migrations.json && echo true || echo false)
37
echo $HAS_MIGRATIONS
38
- echo "::set-output name=has_migrations::$HAS_MIGRATIONS"
+ echo "has_migrations=$HAS_MIGRATIONS" >> $GITHUB_OUTPUT
39
40
- name: Run @nrwl/workspace migrations
41
if: steps.nrwl-workspace-has-migrations.outputs.has_migrations == 'true'
0 commit comments