Skip to content

Commit

Permalink
cleanup github workflows (#15)
Browse files Browse the repository at this point in the history
* github: replace set-output directive

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.

* github: remove test-plugin-example workflow
  • Loading branch information
lbajolet-hashicorp authored May 30, 2023
1 parent a2be14b commit bce55f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 48 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id: get-go-version
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"
linux-go-tests:
runs-on: ubuntu-latest
name: Linux Go tests
Expand Down
47 changes: 0 additions & 47 deletions .github/workflows/test-plugin-example.yml

This file was deleted.

0 comments on commit bce55f2

Please sign in to comment.