Skip to content

Commit

Permalink
update to Go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Aug 3, 2023
1 parent 440fb31 commit 8d83423
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'v**'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'v**'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'v**'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-check-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
type: string

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ inputs.base-branch || github.run_id }}-${{ inputs.chain }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
- 'v**'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ inputs.base || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'v**'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
default: 'master'

env:
GO_VERSION: '1.19.2'
GO_VERSION: '1.20'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence

go 1.18
go 1.20

require (
github.com/bits-and-blooms/bitset v1.5.0
Expand Down
2 changes: 1 addition & 1 deletion tools/batch-script/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence/tools/batch-script

go 1.18
go 1.20

require (
github.com/onflow/cadence v0.21.2
Expand Down
2 changes: 1 addition & 1 deletion tools/compatibility-check/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence/tools/compatibility_check

go 1.19
go 1.20

require (
github.com/onflow/cadence v0.31.2-0.20230207221811-9eb6e7fe4121
Expand Down
2 changes: 1 addition & 1 deletion tools/constructorcheck/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence/tools/constructorcheck

go 1.19
go 1.20

require golang.org/x/tools v0.6.0

Expand Down
4 changes: 2 additions & 2 deletions tools/golangci-lint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/filecoin-project/tools/golangci-lint
module github.com/onflow/cadence/tools/golangci-lint

go 1.19
go 1.20

require github.com/golangci/golangci-lint v1.51.2

Expand Down
2 changes: 1 addition & 1 deletion tools/maprange/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence/tools/maprange

go 1.19
go 1.20

require golang.org/x/tools v0.6.0

Expand Down
2 changes: 1 addition & 1 deletion tools/unkeyed/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/onflow/cadence/tools/unkeyed

go 1.19
go 1.20

require (
golang.org/x/exp/typeparams v0.0.0-20230203172020-98cc5a0785f9
Expand Down

0 comments on commit 8d83423

Please sign in to comment.