Skip to content

Commit

Permalink
Merge pull request #6 from cruxstack/update-runner-module-version
Browse files Browse the repository at this point in the history
chore: bump runner module version to 5.15.1
  • Loading branch information
agfunderburg10 committed Aug 16, 2024
2 parents 79c1116 + d92cff5 commit a292a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ locals {
enabled = coalesce(var.enabled, module.this.enabled, true)
name = coalesce(var.name, module.this.name, "github-runner-${random_string.github_runner_random_suffix.result}")

runner_module_version = "v5.12.0"
runner_module_version = "v5.15.1"

aws_account_id = module.this.enabled && var.aws_account_id != "" ? var.aws_account_id : try(data.aws_caller_identity.current[0].account_id, "")
aws_region_name = module.this.enabled && var.aws_region_name != "" ? var.aws_region_name : try(data.aws_region.current[0].name, "")
Expand Down Expand Up @@ -40,7 +40,7 @@ resource "random_string" "github_runner_random_suffix" {

module "github_runner" {
source = "philips-labs/github-runner/aws"
version = "v5.12.0" # should match local.runner_module_version
version = "v5.15.1" # should match local.runner_module_version

prefix = module.github_runner_label.id
enable_ephemeral_runners = var.runner_ephemeral_mode_enabled
Expand Down

0 comments on commit a292a85

Please sign in to comment.