Skip to content

Commit

Permalink
ci/release: fix error - go mod tidy: exit status 2; output: go: unkno…
Browse files Browse the repository at this point in the history
…wn subcommand "mod"

The Go 1.20 version must be quoted in CI config or we end up with Go 1.2
being installed, which has no go mod support.
  • Loading branch information
joelrebel committed Oct 6, 2023
1 parent 29057e8 commit 8bfefb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: "1.20"
-
name: install cosign
uses: sigstore/cosign-installer@main
Expand All @@ -44,4 +44,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COSIGN_EXPERIMENTAL: 1
GOVERSION: 1.20
GOVERSION: "1.20"

0 comments on commit 8bfefb4

Please sign in to comment.