From c13e57459dac37a53dfc3a40640e3e27fabd8afa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 09:09:33 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [terraform-linters/setup-tflint](https://github.com/terraform-linters/setup-tflint) and [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform). Updates `actions/checkout` from 3 to 4 - [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/v3...v4) Updates `terraform-linters/setup-tflint` from 3 to 4 - [Release notes](https://github.com/terraform-linters/setup-tflint/releases) - [Commits](https://github.com/terraform-linters/setup-tflint/compare/v3...v4) Updates `hashicorp/setup-terraform` from 2 to 3 - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: terraform-linters/setup-tflint dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: hashicorp/setup-terraform dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/terraform-lint.yml | 4 ++-- .github/workflows/terraform-security-msdo.yml | 2 +- .github/workflows/terraform-tests.yml | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/terraform-lint.yml b/.github/workflows/terraform-lint.yml index 7f57abf..1f8f77b 100644 --- a/.github/workflows/terraform-lint.yml +++ b/.github/workflows/terraform-lint.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup TFLint - uses: terraform-linters/setup-tflint@v3 + uses: terraform-linters/setup-tflint@v4 with: tflint_version: v0.46.1 diff --git a/.github/workflows/terraform-security-msdo.yml b/.github/workflows/terraform-security-msdo.yml index 7bff264..b6da49c 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@v3 + - uses: actions/checkout@v4 - uses: microsoft/security-devops-action@v1.12.0 id: msdo with: diff --git a/.github/workflows/terraform-tests.yml b/.github/workflows/terraform-tests.yml index 24dd870..3d8fa50 100644 --- a/.github/workflows/terraform-tests.yml +++ b/.github/workflows/terraform-tests.yml @@ -15,8 +15,8 @@ jobs: name: Format and Validate runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: hashicorp/setup-terraform@v2 + - uses: actions/checkout@v4 + - uses: hashicorp/setup-terraform@v3 with: terraform_version: 1.11.4 - name: Terraform Init @@ -33,7 +33,7 @@ jobs: integration_tests: ${{ steps.find-integration-tests.outputs.tests }} example_tests: ${{ steps.find-example-tests.outputs.tests }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Find unit tests id: find-unit-tests run: | @@ -58,8 +58,8 @@ jobs: matrix: test: ${{fromJson(needs.discover-tests.outputs.unit_tests)}} steps: - - uses: actions/checkout@v3 - - uses: hashicorp/setup-terraform@v2 + - uses: actions/checkout@v4 + - uses: hashicorp/setup-terraform@v3 with: terraform_version: 1.11.4 - name: Terraform Init @@ -75,8 +75,8 @@ jobs: matrix: test: ${{fromJson(needs.discover-tests.outputs.integration_tests)}} steps: - - uses: actions/checkout@v3 - - uses: hashicorp/setup-terraform@v2 + - uses: actions/checkout@v4 + - uses: hashicorp/setup-terraform@v3 with: terraform_version: 1.11.4 - name: Terraform Init @@ -92,8 +92,8 @@ jobs: matrix: test: ${{fromJson(needs.discover-tests.outputs.example_tests)}} steps: - - uses: actions/checkout@v3 - - uses: hashicorp/setup-terraform@v2 + - uses: actions/checkout@v4 + - uses: hashicorp/setup-terraform@v3 with: terraform_version: 1.11.4 - name: Terraform Init