From 09ffb6aea1d2876a3bba6276578c552227e3ac74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:16:58 +0000 Subject: [PATCH] build(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/commitmsg-conform.yml | 2 +- .github/workflows/markdown-lint.yml | 2 +- .github/workflows/terraform-lint-validate.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/commitmsg-conform.yml b/.github/workflows/commitmsg-conform.yml index 2838b43..33a68ca 100644 --- a/.github/workflows/commitmsg-conform.yml +++ b/.github/workflows/commitmsg-conform.yml @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.head_ref }} diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index c1f5d44..2a72569 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - id: lint env: diff --git a/.github/workflows/terraform-lint-validate.yml b/.github/workflows/terraform-lint-validate.yml index 00d82f4..f85fd6c 100644 --- a/.github/workflows/terraform-lint-validate.yml +++ b/.github/workflows/terraform-lint-validate.yml @@ -9,7 +9,7 @@ jobs: name: Check Terraform Formatting steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check Terraform Formatting uses: dflook/terraform-fmt-check@v1 @@ -22,7 +22,7 @@ jobs: needs: fmt-check steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Validate Terraform Configuration uses: dflook/terraform-validate@v1