Skip to content

Commit 649efa2

Browse files
authored
Merge branch 'main' into patch-1
2 parents bd95adb + 91d7681 commit 649efa2

File tree

5 files changed

+34
-34
lines changed

5 files changed

+34
-34
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7373
name: Checkout source code
7474

75-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
75+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
7676
name: Cache plugin dir
7777
with:
7878
path: ~/.tflint.d/plugins

.terraform.lock.hcl

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.tflint.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ plugin "terraform" {
55

66
plugin "aws" {
77
enabled = true
8-
version = "0.41.0"
8+
version = "0.42.0"
99
source = "github.com/terraform-linters/tflint-ruleset-aws"
1010
}

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ locals {
133133
runners_name = var.runner_instance.name
134134
runners_token = var.runner_gitlab.registration_token
135135
runners_executor = var.runner_worker.type
136-
runners_limit = var.runner_worker.max_jobs
136+
runners_limit = var.runner_worker.type == "docker-autoscaler" ? var.runner_worker.max_jobs * var.runner_worker_docker_autoscaler.capacity_per_instance : var.runner_worker.max_jobs
137137
runners_concurrent = var.runner_manager.maximum_concurrent_jobs
138138
runners_environment_vars = jsonencode(var.runner_worker.environment_variables)
139139
runners_pre_build_script = var.runner_worker_gitlab_pipeline.pre_build_script
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
boto3 ==1.40.1
2-
botocore ==1.40.1
1+
boto3 ==1.40.6
2+
botocore ==1.40.6

0 commit comments

Comments
 (0)