From 3636ed31e24955a2fc5601967effa3a00e565ec0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:26:50 +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/ci_common.yml | 36 ++++++++++---------- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/pr-bot.yml | 2 +- .github/workflows/pr-closed.yml | 2 +- .github/workflows/untagged-image-cleanup.yml | 2 +- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci_common.yml b/.github/workflows/ci_common.yml index 30dd099eb..417fa0d23 100644 --- a/.github/workflows/ci_common.yml +++ b/.github/workflows/ci_common.yml @@ -69,7 +69,7 @@ jobs: build_number: ${{ steps.build_number.outputs.build_number }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # if the following value is missing (i.e. not triggered via comment workflow) # then the default checkout will apply @@ -253,7 +253,7 @@ jobs: VERSION_MAJOR: ${{ needs.build.outputs.version_major }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # if the following value is missing (i.e. not triggered via comment workflow) # then the default checkout will apply @@ -348,7 +348,7 @@ jobs: if: ${{ needs.build.outputs.image_push_option == 'filter' }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -427,7 +427,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -465,7 +465,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -504,7 +504,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -549,7 +549,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -602,7 +602,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -647,7 +647,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -692,7 +692,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -737,7 +737,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -782,7 +782,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -827,7 +827,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -879,7 +879,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -924,7 +924,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -951,7 +951,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -1015,7 +1015,7 @@ jobs: if: ${{ needs.build.outputs.image_push_option == 'filter' }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) @@ -1108,7 +1108,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false # if the following value is missing (i.e. not triggered via comment workflow) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 530efe195..49703d56f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml index 160aea504..bd6118a5f 100644 --- a/.github/workflows/pr-bot.yml +++ b/.github/workflows/pr-bot.yml @@ -34,7 +34,7 @@ jobs: steps: # Ensure we have the script file for the github-script action to use - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false diff --git a/.github/workflows/pr-closed.yml b/.github/workflows/pr-closed.yml index 79c3155ee..7ccf91d91 100644 --- a/.github/workflows/pr-closed.yml +++ b/.github/workflows/pr-closed.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false diff --git a/.github/workflows/untagged-image-cleanup.yml b/.github/workflows/untagged-image-cleanup.yml index 9e1161574..b9ada966b 100644 --- a/.github/workflows/untagged-image-cleanup.yml +++ b/.github/workflows/untagged-image-cleanup.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: false