From 821c164a052a6255f1cc6ac64eff49b1824f0657 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Sep 2025 14:54:33 +0000 Subject: [PATCH] Build(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/build-test-images.yml | 2 +- .github/workflows/deploy-appstore.yml | 2 +- .github/workflows/pages.yml | 2 +- .github/workflows/pull-checks.yml | 6 +++--- .github/workflows/slack-commands.yaml | 2 +- .github/workflows/tests.yml | 14 +++++++------- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build-test-images.yml b/.github/workflows/build-test-images.yml index 23ceaf76c..53af75f05 100644 --- a/.github/workflows/build-test-images.yml +++ b/.github/workflows/build-test-images.yml @@ -32,7 +32,7 @@ jobs: fi - name: Checkout the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 if: ${{ steps.check.outputs.skip == 'false' }} - name: Make sure the appinfo is built shell: bash diff --git a/.github/workflows/deploy-appstore.yml b/.github/workflows/deploy-appstore.yml index a7f683abc..b9ff9d0e6 100644 --- a/.github/workflows/deploy-appstore.yml +++ b/.github/workflows/deploy-appstore.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout the project - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: cookbook ref: ${{ github.ref }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5d2a6959f..8413fbc87 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Pages uses: actions/configure-pages@v5 diff --git a/.github/workflows/pull-checks.yml b/.github/workflows/pull-checks.yml index 1170192b8..255749e5e 100644 --- a/.github/workflows/pull-checks.yml +++ b/.github/workflows/pull-checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: filter: "blob:none" fetch-depth: 0 @@ -167,7 +167,7 @@ jobs: steps: - name: Checkout of the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 1 @@ -211,7 +211,7 @@ jobs: steps: - name: Checkout of the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 1 - name: Get the date diff --git a/.github/workflows/slack-commands.yaml b/.github/workflows/slack-commands.yaml index d7edb0eb5..dddc5650a 100644 --- a/.github/workflows/slack-commands.yaml +++ b/.github/workflows/slack-commands.yaml @@ -60,7 +60,7 @@ jobs: reactions: "+1" - name: Checkout of the app data if: steps.config.outputs.startBackport == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.COOKBOOK_BOT_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d80a49478..b77efde3d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout the project - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup node and NPM uses: actions/setup-node@v4 with: @@ -126,7 +126,7 @@ jobs: steps: - name: Checkout the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 @@ -211,7 +211,7 @@ jobs: steps: - name: Checkout the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 @@ -274,7 +274,7 @@ jobs: path: artifacts - name: Checkout of code base if: ${{ github.event_name == 'push' }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: code fetch-depth: 2 @@ -352,7 +352,7 @@ jobs: steps: - name: Checkout the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup node and NPM uses: actions/setup-node@v4 with: @@ -426,7 +426,7 @@ jobs: shell: bash steps: - name: Checkout of the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: build docker container image run: docker build -t php-lint-tester .github/actions/php-linter - name: Check the code base @@ -442,7 +442,7 @@ jobs: steps: - name: Checkout of the app - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get the date id: date run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT