From c33e8f0f017897d8d9a968a087ceb87ae7b45c96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 09:50:42 +0000 Subject: [PATCH] chore(update): 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/build-image-template.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-image-template.yml b/.github/workflows/build-image-template.yml index 610658c..bafc78d 100644 --- a/.github/workflows/build-image-template.yml +++ b/.github/workflows/build-image-template.yml @@ -83,14 +83,14 @@ jobs: ### The publish and periodic rebuilds are based on the latest stable github release tag - name: Checkout latest Github Release tag (${{ inputs.git_latest_release_tag }}) ⚡️ if: inputs.publish_to_registry == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.git_latest_release_tag }} ### The CI is based on the main branch - name: Checkout Repo ⚡️ if: inputs.publish_to_registry == 'false' - uses: actions/checkout@v4 + uses: actions/checkout@v5 ### Common steps between CI and Publish - name: Free up disk space 📦 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0da6ca0..726c87e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: matrix: ${{ steps.ci-versions.outputs.matrix }} steps: - name: Checkout Repo ⚡️ - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get CI versions matrix 📥 id: ci-versions diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4d8f7d4..39930da 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -50,7 +50,7 @@ jobs: tag_name: ${{ steps.git-release-tag.outputs.tag_name }} steps: - name: Checkout Repo ⚡️ - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get latest GitHub Release tag name 📥 id: git-release-tag @@ -77,7 +77,7 @@ jobs: matrix: ${{ steps.release-versions.outputs.matrix }} steps: - name: Checkout Repo ⚡️ - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get release versions matrix 📥 id: release-versions