Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.8.0
Choose a base ref
...
head repository: github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.8.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 4, 2025

  1. fix: prevent unnecessary updates when cpu_options is unset (#4806)

    This PR will replace:
    
    ```hcl
    cpu_options {
      core_count       = var.cpu_options != null ? var.cpu_options.core_count : null
      threads_per_core = var.cpu_options != null ? var.cpu_options.threads_per_core : null
    }
    ```
    
    with:
    
    ```hcl
    dynamic "cpu_options" {
      for_each = var.cpu_options != null ? [var.cpu_options] : []
      content {
        core_count       = try(cpu_options.value.core_count, null)
        threads_per_core = try(cpu_options.value.threads_per_core, null)
      }
    }
    ```
    
    This way, if `cpu_options` is not set, Terraform will **not force a
    resource update every time**.
    
    This issue was introduced in PR #4789 
    
    
    <img width="346" height="94" alt="image"
    src="https://github.com/user-attachments/assets/5a3ca60d-7300-4957-91c3-ff87c2cd5b62"
    />
    edersonbrilhante authored Oct 4, 2025
    Configuration menu
    Copy the full SHA
    8a1cd6f View commit details
    Browse the repository at this point in the history
  2. chore(main): release 6.8.1 (#4807)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [6.8.1](v6.8.0...v6.8.1)
    (2025-10-04)
    
    
    ### Bug Fixes
    
    * prevent unnecessary updates when cpu_options is unset
    ([#4806](#4806))
    ([8a1cd6f](8a1cd6f))
    @edersonbrilhante
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    
    Co-authored-by: runners-releaser[bot] <194412594+runners-releaser[bot]@users.noreply.github.com>
    runners-releaser[bot] authored Oct 4, 2025
    Configuration menu
    Copy the full SHA
    42a1f0c View commit details
    Browse the repository at this point in the history
Loading