Skip to content

Commit

Permalink
update Go to a less obsolete version
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k committed Dec 13, 2023
1 parent b22c917 commit 0e53b05
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 65 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
executors:
golang:
docker:
- image: circleci/golang:1.17
- image: cimg/go:1.18
resource_class: small

commands:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- run:
name: "Install goimports"
command: |
cd / && go get golang.org/x/tools/cmd/goimports
cd / && go install golang.org/x/tools/cmd/goimports@latest
- run:
name: "Ensure we don't need to run 'make gen'"
command: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
default: golang
golangci-lint-version:
type: string
default: 1.42.1
default: 1.55.2
concurrency:
type: string
default: '2'
Expand Down
20 changes: 19 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/filecoin-project/go-state-types

go 1.13
go 1.18

retract v0.12.7 // wrongfully skipped a patch version, use v0.12.6 or v0.12.8&^

Expand All @@ -25,3 +25,21 @@ require (
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/filecoin-project/go-commp-utils v0.1.3 // indirect
github.com/filecoin-project/go-fil-commcid v0.1.0 // indirect
github.com/ipfs/go-ipfs-util v0.0.2 // indirect
github.com/ipfs/go-ipld-format v0.0.2 // indirect
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
github.com/mr-tron/base58 v1.2.0 // indirect
github.com/multiformats/go-base32 v0.0.3 // indirect
github.com/multiformats/go-base36 v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
golang.org/x/sys v0.1.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
lukechampine.com/blake3 v1.1.6 // indirect
)
Loading

0 comments on commit 0e53b05

Please sign in to comment.