From a1bd63f5ded470bf1deaec97eeb9108949b606cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 12:01:16 +0000 Subject: [PATCH] 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/action.yml | 2 +- .github/workflows/azuredeploy.arm.yml | 2 +- .github/workflows/azuredeploy.bicep.yml | 4 ++-- .github/workflows/azuredeploy.terraform.yml | 2 +- .github/workflows/codeql.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 89c8cba..b7e2c19 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -12,7 +12,7 @@ jobs: # Step 1: Checkout the repository - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Step 2: Run custom action - name: Run custom action diff --git a/.github/workflows/azuredeploy.arm.yml b/.github/workflows/azuredeploy.arm.yml index 0accd66..c7383c3 100644 --- a/.github/workflows/azuredeploy.arm.yml +++ b/.github/workflows/azuredeploy.arm.yml @@ -12,7 +12,7 @@ jobs: # Checkout repository - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true diff --git a/.github/workflows/azuredeploy.bicep.yml b/.github/workflows/azuredeploy.bicep.yml index bd1621b..6299393 100644 --- a/.github/workflows/azuredeploy.bicep.yml +++ b/.github/workflows/azuredeploy.bicep.yml @@ -16,7 +16,7 @@ jobs: steps: # Checkout repository - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true # Setup DotNet 9.0 Environment for Tests @@ -50,7 +50,7 @@ jobs: steps: # Checkout repository - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true # Login to Azure diff --git a/.github/workflows/azuredeploy.terraform.yml b/.github/workflows/azuredeploy.terraform.yml index 6ffce09..df023ce 100644 --- a/.github/workflows/azuredeploy.terraform.yml +++ b/.github/workflows/azuredeploy.terraform.yml @@ -11,7 +11,7 @@ jobs: steps: # Checkout repository - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5b337c6..19920fe 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,7 +57,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL