From 0e07e28b129a077467306452eeba40965c13f303 Mon Sep 17 00:00:00 2001 From: Gareth Pelly Date: Thu, 10 Nov 2022 15:21:56 +0000 Subject: [PATCH] chore: Fix deprecated Github Actions set-output command (#448) --- .github/workflows/pre-commit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 6250935..0bbebf1 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -15,7 +15,7 @@ jobs: run: | export DIFF=$(git diff --name-only origin/${{ github.base_ref }} ${{ github.sha }}) echo "Diff between ${{ github.base_ref }} and ${{ github.sha }}" - echo "::set-output name=files::$( echo "$DIFF" | xargs echo )" + echo "name=files::$( echo "$DIFF" | xargs echo )" >> $GITHUB_OUTPUT - name: Install shfmt run: |