Skip to content

Commit

Permalink
all: Bump minimum Go module version to 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
austinvalle committed Sep 6, 2024
1 parent 2e9b106 commit 2032b1f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,12 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5

strategy:
matrix:
go-version: [ '1.21', '1.22' ]

steps:

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go-version }}
go-version-file: 'go.mod'

- name: Run linters
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ linters:
- godot
- gofmt
- gosimple
- govet
- ineffassign
- makezero
- misspell
Expand All @@ -22,7 +23,6 @@ linters:
- unconvert
- unparam
- unused
- vet

run:
# Prevent false positive timeouts in CI
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ that return all the details about which version are currently available for a pa
## Requirements

* [Terraform](https://www.terraform.io/downloads)
* [Go](https://go.dev/doc/install) (1.21)
* [Go](https://go.dev/doc/install) (1.22)
* [GNU Make](https://www.gnu.org/software/make/)
* [golangci-lint](https://golangci-lint.run/usage/install/#local-installation) (optional)

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/terraform-providers/terraform-provider-local

go 1.21

toolchain go1.21.6
go 1.22.7

require (
github.com/google/go-cmp v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.21
go 1.22.7

require (
github.com/hashicorp/copywrite v0.19.0
Expand Down

0 comments on commit 2032b1f

Please sign in to comment.