Skip to content

Commit 233ea6e

Browse files
chore(deps): bump coder from v2.17.0 to v2.18.1 (#157)
Also installs Terraform on the `make gen` runner, as it no longer comes included with the `ubuntu-latest` image after it was upgraded to `24.04`.
1 parent a92084d commit 233ea6e

File tree

3 files changed

+71
-69
lines changed

3 files changed

+71
-69
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
go-version-file: "go.mod"
5151
cache: true
5252

53+
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
54+
5355
- run: go generate ./...
5456

5557
- name: git diff

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/coder/terraform-provider-coderd
33
go 1.22.8
44

55
require (
6-
cdr.dev/slog v1.6.2-0.20240126064726-20367d4aede6
7-
github.com/coder/coder/v2 v2.17.0
6+
cdr.dev/slog v1.6.2-0.20241112041820-0ec81e6e67bb
7+
github.com/coder/coder/v2 v2.18.1
88
github.com/docker/docker v27.2.1+incompatible
99
github.com/docker/go-connections v0.5.0
1010
github.com/google/uuid v1.6.0
@@ -45,7 +45,7 @@ require (
4545
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4646
github.com/cloudflare/circl v1.3.7 // indirect
4747
github.com/coder/pretty v0.0.0-20230908205945-e89ba86370e0 // indirect
48-
github.com/coder/serpent v0.8.0 // indirect
48+
github.com/coder/serpent v0.10.0 // indirect
4949
github.com/coder/terraform-provider-coder v1.0.2 // indirect
5050
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
5151
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -114,7 +114,7 @@ require (
114114
github.com/pkg/errors v0.9.1 // indirect
115115
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
116116
github.com/posener/complete v1.2.3 // indirect
117-
github.com/prometheus/client_golang v1.20.4 // indirect
117+
github.com/prometheus/client_golang v1.20.5 // indirect
118118
github.com/prometheus/client_model v0.6.1 // indirect
119119
github.com/prometheus/common v0.60.0 // indirect
120120
github.com/prometheus/procfs v0.15.1 // indirect
@@ -133,7 +133,7 @@ require (
133133
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
134134
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
135135
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
136-
github.com/yuin/goldmark v1.7.7 // indirect
136+
github.com/yuin/goldmark v1.7.8 // indirect
137137
github.com/yuin/goldmark-meta v1.1.0 // indirect
138138
github.com/zclconf/go-cty v1.15.0 // indirect
139139
github.com/zeebo/errs v1.3.0 // indirect
@@ -148,23 +148,23 @@ require (
148148
go.opentelemetry.io/otel/trace v1.30.0 // indirect
149149
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
150150
go.uber.org/atomic v1.11.0 // indirect
151-
golang.org/x/crypto v0.29.0 // indirect
151+
golang.org/x/crypto v0.31.0 // indirect
152152
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
153-
golang.org/x/mod v0.21.0 // indirect
154-
golang.org/x/net v0.30.0 // indirect
155-
golang.org/x/oauth2 v0.23.0 // indirect
156-
golang.org/x/sync v0.9.0 // indirect
157-
golang.org/x/sys v0.27.0 // indirect
158-
golang.org/x/term v0.26.0 // indirect
159-
golang.org/x/text v0.20.0 // indirect
160-
golang.org/x/time v0.7.0 // indirect
161-
golang.org/x/tools v0.26.0 // indirect
153+
golang.org/x/mod v0.22.0 // indirect
154+
golang.org/x/net v0.31.0 // indirect
155+
golang.org/x/oauth2 v0.24.0 // indirect
156+
golang.org/x/sync v0.10.0 // indirect
157+
golang.org/x/sys v0.28.0 // indirect
158+
golang.org/x/term v0.27.0 // indirect
159+
golang.org/x/text v0.21.0 // indirect
160+
golang.org/x/time v0.8.0 // indirect
161+
golang.org/x/tools v0.27.0 // indirect
162162
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
163163
google.golang.org/appengine v1.6.8 // indirect
164-
google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect
165-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
166-
google.golang.org/grpc v1.67.1 // indirect
167-
google.golang.org/protobuf v1.35.1 // indirect
164+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
165+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect
166+
google.golang.org/grpc v1.68.0 // indirect
167+
google.golang.org/protobuf v1.35.2 // indirect
168168
gopkg.in/DataDog/dd-trace-go.v1 v1.69.0 // indirect
169169
gopkg.in/yaml.v2 v2.4.0 // indirect
170170
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy