Skip to content

Commit da52dd3

Browse files
authored
Merge pull request #1172 from hashicorp/nf/dec23-dependabot-omnibus
Dec '23 dependabot omnibus
2 parents 9f12485 + 07b28d2 commit da52dd3

File tree

4 files changed

+78
-58
lines changed

4 files changed

+78
-58
lines changed

.github/actions/lint-provider-tfe/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/0b5709648c8ba9780e821faf16c5c2bb3262ce3e/install.sh | sh -s -- -b $(go env GOPATH)/bin $GOLANGCILINT_VERSION
2525
shell: bash
2626
env:
27-
GOLANGCILINT_VERSION: v1.52.2
27+
GOLANGCILINT_VERSION: v1.55.2
2828

2929
- run: make lint
3030
shell: bash

.github/actions/test-provider-tfe/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ runs:
100100
TFE_ADMIN_VERSION_MAINTENANCE_TOKEN: ${{ inputs.admin_version_maintenance_token }}
101101
TFE_USER1: tfe-provider-user1
102102
TFE_USER2: tfe-provider-user2
103-
TF_ACC: 1
103+
TF_ACC: "1"
104104
ENABLE_TFE: "${{ inputs.enterprise }}"
105105
TFC_RUN_TASK_URL: "https://httpstat.us/200"
106106
GITHUB_POLICY_SET_IDENTIFIER: "hashicorp/test-policy-set"

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/terraform-provider-tfe
22

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/agext/levenshtein v1.2.3 // indirect
@@ -15,21 +15,21 @@ require (
1515
github.com/hashicorp/go-tfe v1.40.0
1616
github.com/hashicorp/go-version v1.6.0
1717
github.com/hashicorp/hcl v1.0.0
18-
github.com/hashicorp/hcl/v2 v2.18.0 // indirect
18+
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
1919
github.com/hashicorp/terraform-plugin-framework v1.4.2
2020
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0
21-
github.com/hashicorp/terraform-plugin-go v0.19.0
21+
github.com/hashicorp/terraform-plugin-go v0.20.0
2222
github.com/hashicorp/terraform-plugin-mux v0.12.0
23-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0
23+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.30.0
2424
github.com/hashicorp/terraform-svchost v0.1.1
2525
github.com/mattn/go-isatty v0.0.19 // indirect
2626
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
27-
github.com/zclconf/go-cty v1.14.0
28-
golang.org/x/crypto v0.14.0 // indirect
27+
github.com/zclconf/go-cty v1.14.1
28+
golang.org/x/crypto v0.15.0 // indirect
2929
golang.org/x/net v0.17.0 // indirect
30-
golang.org/x/oauth2 v0.9.0 // indirect
30+
golang.org/x/oauth2 v0.13.0 // indirect
3131
golang.org/x/sys v0.14.0 // indirect
32-
golang.org/x/text v0.13.0 // indirect
32+
golang.org/x/text v0.14.0 // indirect
3333
golang.org/x/time v0.4.0 // indirect
3434
google.golang.org/protobuf v1.31.0 // indirect
3535
)
@@ -41,7 +41,7 @@ require (
4141
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
4242
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4343
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
44-
github.com/hashicorp/go-plugin v1.5.1 // indirect
44+
github.com/hashicorp/go-plugin v1.6.0 // indirect
4545
github.com/hashicorp/go-uuid v1.0.3
4646
github.com/hashicorp/jsonapi v0.0.0-20231023233540-b6a3d216e521 // indirect
4747
github.com/hashicorp/logutils v1.0.0 // indirect
@@ -55,8 +55,8 @@ require (
5555
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5656
github.com/oklog/run v1.1.0 // indirect
5757
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
58-
google.golang.org/appengine v1.6.7 // indirect
59-
google.golang.org/grpc v1.57.0 // indirect
58+
google.golang.org/appengine v1.6.8 // indirect
59+
google.golang.org/grpc v1.60.0 // indirect
6060
)
6161

6262
require (
@@ -65,19 +65,19 @@ require (
6565
)
6666

6767
require (
68-
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95 // indirect
68+
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
6969
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
7070
github.com/cloudflare/circl v1.3.3 // indirect
71-
github.com/hashicorp/hc-install v0.6.0 // indirect
72-
github.com/hashicorp/terraform-registry-address v0.2.2 // indirect
71+
github.com/hashicorp/hc-install v0.6.1 // indirect
72+
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
7373
github.com/kr/pretty v0.2.1 // indirect
7474
github.com/kr/text v0.2.0 // indirect
7575
github.com/pmezard/go-difflib v1.0.0 // indirect
76-
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
76+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
7777
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
78-
golang.org/x/mod v0.12.0 // indirect
78+
golang.org/x/mod v0.13.0 // indirect
7979
golang.org/x/sync v0.5.0 // indirect
80-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
80+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
8181
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
8282
gopkg.in/yaml.v3 v3.0.1 // indirect
8383
)

0 commit comments

Comments
 (0)