Skip to content

Commit

Permalink
github: replace set-output directive
Browse files Browse the repository at this point in the history
The set-output directive in github action files is deprecated and will
be unsupported starting May 31st, so we remove it and replace it with a
redirection to the $GITHUB_OUTPUT file.
  • Loading branch information
lbajolet-hashicorp committed May 26, 2023
1 parent b7e76d8 commit dedd786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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 "name=go-version::$(cat .go-version)" >>"$GITHUB_OUTPUT"
acceptance-test:
runs-on: ubuntu-latest
name: Acceptance Test
Expand Down

0 comments on commit dedd786

Please # to comment.