Skip to content

Commit

Permalink
Fixed deprecation warnings (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkruithof authored Feb 8, 2023
1 parent cb90613 commit 5b47866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
set +e
cd ${{ inputs.working-dir }}
$( check-outdated --depth 1000 --ignore-dev-dependencies --columns name,current,latest,changes > ${{ runner.temp }}/post-update ) || true
echo "::set-output name=outdated::$(cat ${{ runner.temp }}/post-update)"
echo "outdated=$(cat ${{ runner.temp }}/post-update)" >> $GITHUB_OUTPUT
- name: Make diff
shell: bash
Expand All @@ -55,4 +55,4 @@ runs:
diff="${diff//'%'/'%25'}"
diff="${diff//$'\n'/'%0A'}"
diff="${diff//$'\r'/'%0D'}"
echo "::set-output name=diff::$diff"
echo "diff=$diff" >> $GITHUB_OUTPUT

0 comments on commit 5b47866

Please sign in to comment.