From d2b498ca18b7945d9dcac625b9770ccc7279ba13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 08:55:30 +0000 Subject: [PATCH] build(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/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..554659f 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@v5 with: fetch-depth: 0 ref: ${{ github.head_ref }} diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index c1f5d44..e35e2c9 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@v5 - id: lint env: diff --git a/.github/workflows/terraform-lint-validate.yml b/.github/workflows/terraform-lint-validate.yml index 00d82f4..41a0607 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@v5 - 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@v5 - name: Validate Terraform Configuration uses: dflook/terraform-validate@v1