Skip to content

Commit

Permalink
tooling: updating to Go 1.20.5 (#2749)
Browse files Browse the repository at this point in the history
Fixes the Terraform Generator
  • Loading branch information
tombuildsstuff authored Jul 12, 2023
1 parent bc28a01 commit 053c059
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation-extract-tf-resource-ids.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: extract TF resource ids and update PR body
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-regenerate-go-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: Setup .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-regenerate-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: Setup .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-rest-api-specs-importer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: Setup .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-version-bumper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: Setup .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-end-to-end.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: "Build Data API"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-generator-go-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: run unit tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-generator-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: run unit tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-rest-api-specs-importer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.19.3'
go-version: '1.20.5'

- name: run unit tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ At the current time only Resource Manager Services are supported - although we'r

The following dependencies are required:

* [Golang 1.19.x](https://go.dev/dl/)
* [Golang 1.20.x](https://go.dev/dl/)
* [.NET 7.x](https://dotnet.microsoft.com/download/dotnet/7.0)

At first checkout you'll need to both initialize and then update the Git submodule:
Expand Down
2 changes: 1 addition & 1 deletion tools/extract-tf-resource-ids/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/extract-tf-resource-ids

go 1.19
go 1.20

require (
github.com/go-test/deep v1.0.8
Expand Down
2 changes: 1 addition & 1 deletion tools/generator-go-sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/generator-go-sdk

go 1.19
go 1.20

require (
github.com/hashicorp/go-azure-helpers v0.55.0
Expand Down
2 changes: 1 addition & 1 deletion tools/generator-terraform/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/generator-terraform

go 1.19
go 1.20

replace github.com/hashicorp/pandora/tools/sdk => ../sdk

Expand Down
2 changes: 1 addition & 1 deletion tools/importer-rest-api-specs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/importer-rest-api-specs

go 1.19
go 1.20

require (
github.com/gertd/go-pluralize v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion tools/sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/sdk

go 1.19
go 1.20

require github.com/hashicorp/hcl/v2 v2.10.1

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

go 1.19
go 1.20

require (
github.com/hashicorp/hcl/v2 v2.10.1
Expand Down
2 changes: 1 addition & 1 deletion tools/wrapper-automation/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/pandora/tools/wrapper-automation

go 1.19
go 1.20

require github.com/mitchellh/cli v1.1.4

Expand Down

0 comments on commit 053c059

Please sign in to comment.