From 57cd092ce0c65bcd2fb06d55a30576f60a742c39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 12:46:00 +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/build-latest.yaml | 8 ++++---- .github/workflows/deploy-image.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-latest.yaml b/.github/workflows/build-latest.yaml index 3237c03..d0e3f7d 100644 --- a/.github/workflows/build-latest.yaml +++ b/.github/workflows/build-latest.yaml @@ -40,7 +40,7 @@ jobs: imageDistroVersion: bookworm imageDistroVariant: slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx @@ -97,7 +97,7 @@ jobs: - init_scripts - multiple_databases steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Download artifact uses: actions/download-artifact@v5 with: @@ -124,7 +124,7 @@ jobs: ) needs: [build-docker-image, run-scenario-tests] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Download artifact uses: actions/download-artifact@v5 with: @@ -160,7 +160,7 @@ jobs: runs-on: ubuntu-latest needs: [ build-docker-image, run-scenario-tests ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Download artifact uses: actions/download-artifact@v5 with: diff --git a/.github/workflows/deploy-image.yaml b/.github/workflows/deploy-image.yaml index d8678b5..bbc7576 100644 --- a/.github/workflows/deploy-image.yaml +++ b/.github/workflows/deploy-image.yaml @@ -33,7 +33,7 @@ jobs: imageDistroVersion: bookworm imageDistroVariant: slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx @@ -103,7 +103,7 @@ jobs: steps: - name: Checkout code id: git_checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: 'develop'