From fbb88be102cef0fe08fdc07531e5e409c8f560dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 12:08:43 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `hashicorp/setup-terraform` from 3 to 4 - [Release notes](https://github.com/hashicorp/setup-terraform/releases) - [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/setup-terraform/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: hashicorp/setup-terraform dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/terraform-lint.yml | 2 +- .github/workflows/terraform-security-msdo.yml | 2 +- .github/workflows/terraform-tests.yml | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/terraform-lint.yml b/.github/workflows/terraform-lint.yml index e94d717..80e1247 100644 --- a/.github/workflows/terraform-lint.yml +++ b/.github/workflows/terraform-lint.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/terraform-security-msdo.yml b/.github/workflows/terraform-security-msdo.yml index fe44c11..1d6e094 100644 --- a/.github/workflows/terraform-security-msdo.yml +++ b/.github/workflows/terraform-security-msdo.yml @@ -18,7 +18,7 @@ jobs: name: MSDO Security Scan runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - uses: microsoft/security-devops-action@v1.12.0 diff --git a/.github/workflows/terraform-tests.yml b/.github/workflows/terraform-tests.yml index ab57aa3..6beb859 100644 --- a/.github/workflows/terraform-tests.yml +++ b/.github/workflows/terraform-tests.yml @@ -18,10 +18,10 @@ jobs: name: Format and Validate runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: hashicorp/setup-terraform@v3 + - uses: hashicorp/setup-terraform@v4 with: terraform_version: 1.12.1 - name: Terraform Init @@ -37,7 +37,7 @@ jobs: unit_tests: ${{ steps.find-unit-tests.outputs.tests }} integration_tests: ${{ steps.find-integration-tests.outputs.tests }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - name: Find unit tests @@ -59,10 +59,10 @@ jobs: matrix: test: ${{fromJson(needs.discover-tests.outputs.unit_tests)}} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: hashicorp/setup-terraform@v3 + - uses: hashicorp/setup-terraform@v4 with: terraform_version: 1.12.1 - name: Terraform Init @@ -82,10 +82,10 @@ jobs: matrix: test: ${{fromJson(needs.discover-tests.outputs.integration_tests)}} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: hashicorp/setup-terraform@v3 + - uses: hashicorp/setup-terraform@v4 with: terraform_version: 1.12.1 - name: Terraform Init @@ -102,10 +102,10 @@ jobs: runs-on: ubuntu-latest if: always() steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: hashicorp/setup-terraform@v3 + - uses: hashicorp/setup-terraform@v4 with: terraform_version: 1.12.1 - name: Make test scripts executable