diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca1214a..ba31b5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,11 +18,11 @@ jobs: - name: Load Go version id: go-version run: | - echo "::set-env name=GO_VERSION::$(tr -d '\n' < .github/versions/go)" + echo "::set-output name=go-version::$(tr -d '\n' < .github/versions/go)" - uses: actions/setup-go@v2 with: - go-version: ${{ env.GO_VERSION }} + go-version: ${{ steps.go-version.outputs.go-version }} - name: Select custom release notes id: release-notes