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