From 5b47866876bb5617805fb788fea3b8140120fc85 Mon Sep 17 00:00:00 2001 From: Peter Kruithof Date: Wed, 8 Feb 2023 13:34:14 +0100 Subject: [PATCH] Fixed deprecation warnings (#6) --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 1ab3dc8..e60ed31 100644 --- a/action.yaml +++ b/action.yaml @@ -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 @@ -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