From 497414aa601af95961dd71d9b07a40f0831a7e19 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 21:09:09 +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/single.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/single.yml b/.github/workflows/single.yml index 6ad6ac4..aaf2097 100644 --- a/.github/workflows/single.yml +++ b/.github/workflows/single.yml @@ -40,7 +40,7 @@ jobs: echo "CERT_MANAGER_VERSION=${{ inputs.certmanager_version }}" >> $GITHUB_ENV - name: Checkout integration-tests - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: sdcio/integration-tests path: integration-tests @@ -48,7 +48,7 @@ jobs: # Checkout config-server with specific tag if version is not v0.0.0 # next checkout job will be skipped if this is the case - name: Checkout config-server - uses: actions/checkout@v4 + uses: actions/checkout@v5 if: "!contains(env.CONFIG_VERSION, 'v0.0.0')" with: ref: ${{ env.CONFIG_VERSION }} @@ -59,7 +59,7 @@ jobs: # Checkout config-server main branch IF tag is v0.0.0 # previous checkout job will be skipped if this is the case - name: Checkout config-server - uses: actions/checkout@v4 + uses: actions/checkout@v5 if: "contains(env.CONFIG_VERSION, 'v0.0.0')" with: path: config-server