From 20a04824fe8cc1ff599b799ffbee47282a6f03b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 07:22:53 +0000 Subject: [PATCH] chore(deps): 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/docker.build.yml | 6 +++--- .github/workflows/github.prs.combine.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.build.yml b/.github/workflows/docker.build.yml index c4323507f..3510d9a4b 100644 --- a/.github/workflows/docker.build.yml +++ b/.github/workflows/docker.build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Docker meta id: docker_meta uses: crazy-max/ghaction-docker-meta@v5.7.0 @@ -55,13 +55,13 @@ jobs: labels: ${{ steps.docker_meta.outputs.labels }} - name: Check out `wmde/wbaas-deploy` repository in staging child directory if: github.event_name != 'pull_request' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: wmde/wbaas-deploy path: ./repos/wbaas-deploy-staging - name: Check out `wmde/wbaas-deploy` repository in production child directory if: github.event_name != 'pull_request' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: wmde/wbaas-deploy path: ./repos/wbaas-deploy-production diff --git a/.github/workflows/github.prs.combine.yml b/.github/workflows/github.prs.combine.yml index bc0388ff8..c27a5fd09 100644 --- a/.github/workflows/github.prs.combine.yml +++ b/.github/workflows/github.prs.combine.yml @@ -93,7 +93,7 @@ jobs: console.log('Combined: ' + combined); return combined # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.GH_TOKEN_PLUSW }}