Skip to content

Commit

Permalink
try 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ETLaurent committed Sep 26, 2023
1 parent c136d9f commit 7c13942
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/outdated-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
- name: Check outdated dependencies
id: outdated
run: |
npm outdated > ./outdated
{
echo 'OUTDATED_DEPENDENCIES<<EOF' >> $GITHUB_OUTPUT
npm outdated >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
echo 'OUTDATED_DEPENDENCIES<<EOF'
cat ./outdated
echo EOF
} >> "$GITHUB_ENV"
- name: Report Status
run: echo $OUTDATED_DEPENDENCIES
Expand Down

0 comments on commit 7c13942

Please sign in to comment.