Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit e27531a

Browse files
committed
Change Go build version to eliminate the risk of needing both old and new build tags
With Go 1.18 and running `go fix`, we no longer have the risk of running into build issues due to not having both build flags, as Horia raised in the PR.
1 parent 2fde7ae commit e27531a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
arch:
3131
type: string
3232
docker:
33-
- image: circleci/golang:1.17
33+
- image: circleci/golang:1.18
3434
steps:
3535
- checkout
3636
- run: GOOS=<< parameters.os >> GOARCH=<< parameters.arch >> go build ./cmd/secrethub
3737
test:
3838
docker:
39-
- image: circleci/golang:1.17
39+
- image: circleci/golang:1.18
4040
steps:
4141
- checkout
4242
- restore_cache:
@@ -50,7 +50,7 @@ jobs:
5050
- run: make test
5151
verify-goreleaser:
5252
docker:
53-
- image: goreleaser/goreleaser:v0.133
53+
- image: goreleaser/goreleaser:v1.12.3
5454
steps:
5555
- checkout
5656
- run: goreleaser check

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/secrethub/secrethub-cli
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
bitbucket.org/zombiezen/cardcpx v0.0.0-20150417151802-902f68ff43ef

0 commit comments

Comments
 (0)