Skip to content

Commit e93a917

Browse files
chore: bump the coder-modules group across 3 directories with 7 updates (#21093)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0f05409 commit e93a917

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

dogfood/coder-envbuilder/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ data "coder_workspace_owner" "me" {}
104104

105105
module "slackme" {
106106
source = "dev.registry.coder.com/coder/slackme/coder"
107-
version = "1.0.32"
107+
version = "1.0.33"
108108
agent_id = coder_agent.dev.id
109109
auth_provider_id = "slack"
110110
}
111111

112112
module "dotfiles" {
113113
source = "dev.registry.coder.com/coder/dotfiles/coder"
114-
version = "1.2.2"
114+
version = "1.2.3"
115115
agent_id = coder_agent.dev.id
116116
}
117117

dogfood/coder/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -333,15 +333,15 @@ data "coder_parameter" "vscode_channel" {
333333
module "slackme" {
334334
count = data.coder_workspace.me.start_count
335335
source = "dev.registry.coder.com/coder/slackme/coder"
336-
version = "1.0.32"
336+
version = "1.0.33"
337337
agent_id = coder_agent.dev.id
338338
auth_provider_id = "slack"
339339
}
340340

341341
module "dotfiles" {
342342
count = data.coder_workspace.me.start_count
343343
source = "dev.registry.coder.com/coder/dotfiles/coder"
344-
version = "1.2.2"
344+
version = "1.2.3"
345345
agent_id = coder_agent.dev.id
346346
}
347347

@@ -357,7 +357,7 @@ module "git-config" {
357357
module "git-clone" {
358358
count = data.coder_workspace.me.start_count
359359
source = "dev.registry.coder.com/coder/git-clone/coder"
360-
version = "1.2.1"
360+
version = "1.2.2"
361361
agent_id = coder_agent.dev.id
362362
url = "https://github.com/coder/coder"
363363
base_dir = local.repo_base_dir
@@ -373,7 +373,7 @@ module "personalize" {
373373
module "mux" {
374374
count = data.coder_workspace.me.start_count
375375
source = "registry.coder.com/coder/mux/coder"
376-
version = "1.0.2"
376+
version = "1.0.4"
377377
agent_id = coder_agent.dev.id
378378
subdomain = true
379379
}
@@ -391,7 +391,7 @@ module "code-server" {
391391
module "vscode-web" {
392392
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "vscode-web") ? data.coder_workspace.me.start_count : 0
393393
source = "dev.registry.coder.com/coder/vscode-web/coder"
394-
version = "1.4.2"
394+
version = "1.4.3"
395395
agent_id = coder_agent.dev.id
396396
folder = local.repo_dir
397397
extensions = ["github.copilot"]
@@ -429,15 +429,15 @@ module "coder-login" {
429429
module "cursor" {
430430
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "cursor") ? data.coder_workspace.me.start_count : 0
431431
source = "dev.registry.coder.com/coder/cursor/coder"
432-
version = "1.3.3"
432+
version = "1.4.0"
433433
agent_id = coder_agent.dev.id
434434
folder = local.repo_dir
435435
}
436436

437437
module "windsurf" {
438438
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "windsurf") ? data.coder_workspace.me.start_count : 0
439439
source = "dev.registry.coder.com/coder/windsurf/coder"
440-
version = "1.2.1"
440+
version = "1.3.0"
441441
agent_id = coder_agent.dev.id
442442
folder = local.repo_dir
443443
}

examples/templates/tasks-docker/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,14 @@ module "code-server" {
275275
module "windsurf" {
276276
count = data.coder_workspace.me.start_count
277277
source = "registry.coder.com/coder/windsurf/coder"
278-
version = "1.2.1"
278+
version = "1.3.0"
279279
agent_id = coder_agent.main.id
280280
}
281281

282282
module "cursor" {
283283
count = data.coder_workspace.me.start_count
284284
source = "registry.coder.com/coder/cursor/coder"
285-
version = "1.3.3"
285+
version = "1.4.0"
286286
agent_id = coder_agent.main.id
287287
}
288288

0 commit comments

Comments
 (0)