From 4dd76549be297cd80bb065d1d18035d8fe455d36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 15:42:52 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/mega-linter.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/terraform-validation.yml | 8 ++++---- .github/workflows/tf-docs.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index 847a7cd..53f12f3 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -53,7 +53,7 @@ jobs: steps: # Git Checkout - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b31ad2e..81171bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: changed_modules: ${{ steps.changes.outputs.changed_modules }} steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -114,7 +114,7 @@ jobs: previous_version: ${{ steps.version.outputs.previous_version }} steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/terraform-validation.yml b/.github/workflows/terraform-validation.yml index 48a9ddb..21f44e2 100644 --- a/.github/workflows/terraform-validation.yml +++ b/.github/workflows/terraform-validation.yml @@ -25,7 +25,7 @@ jobs: any-tf-changed: ${{ steps.changes.outputs.any-tf-changed }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -96,7 +96,7 @@ jobs: if: needs.detect-changes.outputs.any-tf-changed == 'true' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Terraform uses: hashicorp/setup-terraform@v3 @@ -125,7 +125,7 @@ jobs: fail-fast: false steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Terraform uses: hashicorp/setup-terraform@v3 @@ -194,7 +194,7 @@ jobs: fail-fast: false steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Terraform uses: hashicorp/setup-terraform@v3 diff --git a/.github/workflows/tf-docs.yml b/.github/workflows/tf-docs.yml index 517694c..4a1dd3a 100644 --- a/.github/workflows/tf-docs.yml +++ b/.github/workflows/tf-docs.yml @@ -19,7 +19,7 @@ jobs: pull-requests: write steps: - name: Begin CI... - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # If the event that triggered the workflow is a pull request, then the variable contains ${{ github.event.pull_request.head.ref }} # If the event that triggered the workflow is a push, then the variable contains ${{ github.ref }}