Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit beb3051

Browse files
authored
fix: unexpected update on variable resource (#874)
chore: fix e2e tests
1 parent 93a1ee0 commit beb3051

File tree

585 files changed

+605
-12715
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

585 files changed

+605
-12715
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
16-
- uses: actions/setup-go@v3
16+
- uses: actions/setup-go@v5
1717
with:
1818
go-version: '1.22'
1919
- run: go build ./...

.github/workflows/integration-tests.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Install Terraform
23-
uses: hashicorp/setup-terraform@v2
24-
with:
25-
terraform_wrapper: false
23+
uses: hashicorp/setup-terraform@v3
2624
- name: Set up Go
27-
uses: actions/setup-go@v2
25+
uses: actions/setup-go@v5
2826
- uses: actions/setup-python@v4
2927
with:
3028
python-version: '3.10'
@@ -95,7 +93,7 @@ jobs:
9593
OCTOTESTSKIPINIT: true
9694
GOMAXPROCS: 1
9795
OCTOTESTVERSION: latest
98-
OCTOTESTIMAGEURL: docker.packages.octopushq.com/octopusdeploy/octopusdeploy
96+
OCTOTESTIMAGEURL: octopusdeploy/octopusdeploy
9997
OCTOTESTRETRYCOUNT: 1
10098
- name: Upload test artifacts
10199
if: always()

go.mod

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/OctopusDeploy/terraform-provider-octopusdeploy
22

3-
go 1.22
3+
go 1.22.0
44

5-
toolchain go1.22.3
5+
toolchain go1.22.5
66

77
require (
8-
github.com/OctopusDeploy/go-octopusdeploy/v2 v2.64.2
9-
github.com/OctopusSolutionsEngineering/OctopusTerraformTestFramework v0.0.0-20241206032352-dbc62b2d16cf
8+
github.com/OctopusDeploy/go-octopusdeploy/v2 v2.65.3
9+
github.com/OctopusSolutionsEngineering/OctopusTerraformTestFramework v0.0.0-20250307001652-0d83fd2b1e49
1010
github.com/google/uuid v1.6.0
1111
github.com/hashicorp/go-cty v1.4.1-0.20200723130312-85980079f637
1212
github.com/hashicorp/terraform-plugin-docs v0.13.0
@@ -18,16 +18,15 @@ require (
1818
github.com/hashicorp/terraform-plugin-mux v0.16.0
1919
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0
2020
github.com/hashicorp/terraform-plugin-testing v1.8.0
21-
github.com/stretchr/testify v1.9.0
22-
github.com/testcontainers/testcontainers-go v0.34.0
23-
golang.org/x/text v0.19.0
24-
k8s.io/utils v0.0.0-20230505201702-9f6742963106
21+
github.com/stretchr/testify v1.10.0
22+
github.com/testcontainers/testcontainers-go v0.35.0
23+
golang.org/x/text v0.21.0
2524
software.sslmate.com/src/go-pkcs12 v0.4.0
2625
)
2726

2827
require (
2928
dario.cat/mergo v1.0.1 // indirect
30-
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
29+
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
3130
github.com/Masterminds/goutils v1.1.1 // indirect
3231
github.com/Masterminds/semver/v3 v3.2.0 // indirect
3332
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
@@ -49,17 +48,18 @@ require (
4948
github.com/davecgh/go-spew v1.1.1 // indirect
5049
github.com/dghubble/sling v1.4.1 // indirect
5150
github.com/distribution/reference v0.6.0 // indirect
52-
github.com/docker/docker v27.3.1+incompatible // indirect
51+
github.com/docker/docker v27.5.1+incompatible // indirect
5352
github.com/docker/go-connections v0.5.0 // indirect
5453
github.com/docker/go-units v0.5.0 // indirect
5554
github.com/fatih/color v1.16.0 // indirect
5655
github.com/felixge/httpsnoop v1.0.4 // indirect
56+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
5757
github.com/go-logr/logr v1.4.2 // indirect
5858
github.com/go-logr/stdr v1.2.2 // indirect
5959
github.com/go-ole/go-ole v1.3.0 // indirect
6060
github.com/go-playground/locales v0.14.1 // indirect
6161
github.com/go-playground/universal-translator v0.18.1 // indirect
62-
github.com/go-playground/validator/v10 v10.11.2 // indirect
62+
github.com/go-playground/validator/v10 v10.25.0 // indirect
6363
github.com/go-test/deep v1.0.7 // indirect
6464
github.com/gogo/protobuf v1.3.2 // indirect
6565
github.com/golang/protobuf v1.5.4 // indirect
@@ -84,10 +84,9 @@ require (
8484
github.com/huandu/xstrings v1.4.0 // indirect
8585
github.com/imdario/mergo v0.3.15 // indirect
8686
github.com/klauspost/compress v1.17.11 // indirect
87-
github.com/kr/pretty v0.3.1 // indirect
88-
github.com/leodido/go-urn v1.2.2 // indirect
87+
github.com/leodido/go-urn v1.4.0 // indirect
8988
github.com/lufia/plan9stats v0.0.0-20240909124753-873cd0166683 // indirect
90-
github.com/magiconair/properties v1.8.7 // indirect
89+
github.com/magiconair/properties v1.8.9 // indirect
9190
github.com/mailru/easyjson v0.7.7 // indirect
9291
github.com/mattn/go-colorable v0.1.13 // indirect
9392
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -102,7 +101,7 @@ require (
102101
github.com/moby/sys/sequential v0.6.0 // indirect
103102
github.com/moby/sys/user v0.3.0 // indirect
104103
github.com/moby/sys/userns v0.1.0 // indirect
105-
github.com/moby/term v0.5.0 // indirect
104+
github.com/moby/term v0.5.2 // indirect
106105
github.com/morikuni/aec v1.0.0 // indirect
107106
github.com/oklog/run v1.1.0 // indirect
108107
github.com/opencontainers/go-digest v1.0.0 // indirect
@@ -112,7 +111,6 @@ require (
112111
github.com/pmezard/go-difflib v1.0.0 // indirect
113112
github.com/posener/complete v1.2.3 // indirect
114113
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
115-
github.com/rogpeppe/go-internal v1.10.0 // indirect
116114
github.com/russross/blackfriday v1.6.0 // indirect
117115
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
118116
github.com/shoenig/go-m1cpu v0.1.6 // indirect
@@ -127,18 +125,19 @@ require (
127125
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
128126
github.com/yusufpapurcu/wmi v1.2.4 // indirect
129127
github.com/zclconf/go-cty v1.14.4 // indirect
130-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
131-
go.opentelemetry.io/otel v1.31.0 // indirect
128+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
129+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
130+
go.opentelemetry.io/otel v1.34.0 // indirect
132131
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 // indirect
133-
go.opentelemetry.io/otel/metric v1.31.0 // indirect
134-
go.opentelemetry.io/otel/trace v1.31.0 // indirect
132+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
133+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
135134
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
136-
golang.org/x/crypto v0.28.0 // indirect
135+
golang.org/x/crypto v0.32.0 // indirect
137136
golang.org/x/exp v0.0.0-20240707233637-46b078467d37 // indirect
138137
golang.org/x/mod v0.19.0 // indirect
139-
golang.org/x/net v0.27.0 // indirect
140-
golang.org/x/sync v0.8.0 // indirect
141-
golang.org/x/sys v0.26.0 // indirect
138+
golang.org/x/net v0.34.0 // indirect
139+
golang.org/x/sync v0.10.0 // indirect
140+
golang.org/x/sys v0.29.0 // indirect
142141
golang.org/x/time v0.5.0 // indirect
143142
golang.org/x/tools v0.23.0 // indirect
144143
google.golang.org/appengine v1.6.8 // indirect

0 commit comments

Comments
 (0)