From e41231b04ec59fec721b2724d453339b41e81b20 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Wed, 17 May 2023 11:39:55 -0400 Subject: [PATCH] build: upgrade deprecated actions syntax (#17222) Missed these in the previous pass. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b295b1729..e2d06774f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,7 @@ jobs: # version, because "goenv" can react to it automatically. run: | echo "Building with Go $(cat .go-version)" - echo "::set-output name=go-version::$(cat .go-version)" + echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT - name: Setup go uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0 @@ -138,7 +138,7 @@ jobs: else echo "no files were updated" fi - echo "::set-output name=build-ref::$(git rev-parse HEAD)" + echo "build-ref=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - name: Invoke build workflow uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2.2