From 5e4005e60dd311bf0c0f75a4d7bbd4696191734c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 22:02:58 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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..b3788d7 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@v5 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09c9792..1c89bb0 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@v5 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@v5 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/terraform-validation.yml b/.github/workflows/terraform-validation.yml index 48a9ddb..af9d153 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@v5 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@v5 - 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@v5 - 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@v5 - name: Setup Terraform uses: hashicorp/setup-terraform@v3 diff --git a/.github/workflows/tf-docs.yml b/.github/workflows/tf-docs.yml index 517694c..91268e4 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@v5 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 }}