-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from cybozu-go/golang-1.17
update golang to 1.17
- Loading branch information
Showing
4 changed files
with
402 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: | ||
- 'main' | ||
env: | ||
go-version: 1.16 | ||
go-version: 1.17 | ||
jobs: | ||
build: | ||
name: Build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ on: | |
tags: | ||
- 'v*' | ||
env: | ||
go-version: 1.16 | ||
go-version: 1.17 | ||
jobs: | ||
build: | ||
name: Release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,51 @@ | ||
module github.com/cybozu-go/setup-hw | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/cybozu-go/log v1.6.0 | ||
github.com/cybozu-go/well v1.10.0 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/gopherjs/gopherjs v0.0.0-20210519211817-2312de329ae4 // indirect | ||
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c | ||
github.com/prometheus/client_golang v1.10.0 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/client_model v0.2.0 | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
golang.org/x/text v0.3.6 // indirect | ||
gopkg.in/ini.v1 v1.62.0 | ||
github.com/spf13/cobra v1.2.1 | ||
gopkg.in/ini.v1 v1.63.0 | ||
sigs.k8s.io/yaml v1.2.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/cybozu-go/netutil v1.4.2 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20210901121439-eee08aaf2717 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/onsi/gomega v1.14.0 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.8.1 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/vishvananda/netlink v1.1.0 // indirect | ||
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect | ||
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect | ||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.