From c39f9f1f718587564e88e725d0d2c9eb72e8a36e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 20:16:56 +0000 Subject: [PATCH] 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/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..30e0907 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@v5 # 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..f555899 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@v5 with: submodules: true diff --git a/.github/workflows/azuredeploy.bicep.yml b/.github/workflows/azuredeploy.bicep.yml index bd1621b..4592645 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@v5 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@v5 with: submodules: true # Login to Azure diff --git a/.github/workflows/azuredeploy.terraform.yml b/.github/workflows/azuredeploy.terraform.yml index 6ffce09..2958fa6 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@v5 with: submodules: true diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5b337c6..814a24e 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@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL