Skip to content

Commit

Permalink
chore: update gha syntax to remove set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
DanStough committed May 8, 2024
1 parent 469cce8 commit 5b5cf97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# looking for just the number, eg. 1.18.3
run: |
echo "Building with Go $(go env GOVERSION | tr -d 'go')"
echo "::set-output name=go-version::$(go env GOVERSION | tr -d 'go')"
echo "go-version=$(go env GOVERSION | tr -d 'go')" >> "$GITHUB_OUTPUT"
get-product-version:
Expand All @@ -43,7 +43,7 @@ jobs:
id: get-product-version
run: |
make version
echo "::set-output name=product-version::$(make version)"
echo "product-version=$(make version)" >> "$GITHUB_OUTPUT"
generate-metadata-file:
needs: get-product-version
Expand Down

0 comments on commit 5b5cf97

Please sign in to comment.