Skip to content

Commit

Permalink
try 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ETLaurent committed Sep 26, 2023
1 parent 98b07e3 commit d66cbba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/outdated-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ jobs:
# run: npm install
- name: Check outdated dependencies
id: outdated
run: echo "outdated_dependencies=$(npm outdated)" >> "$GITHUB_OUTPUT"
run: |
{
echo 'outdated_dependencies<<EOF'
npm outdated
echo EOF
} >> "$GITHUB_ENV"
- name: Report Status
run: echo $OUTDATED_DEPENDENCIES
env:
Expand Down

0 comments on commit d66cbba

Please sign in to comment.