From e7c09f2f733cab9df4b55e0ad105421d4e06d076 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 22:22:08 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 in the all-actions group Bumps the all-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/php.yml | 10 +++++----- .github/workflows/reusable_linter.yml | 8 ++++---- .github/workflows/reusable_phplinter.yml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 69eceba..3ad6966 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -69,7 +69,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -132,7 +132,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" @@ -169,7 +169,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -230,7 +230,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -259,7 +259,7 @@ jobs: runs-on: [ubuntu-latest] needs: [unit-tests-linux] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/download-artifact@v6 with: diff --git a/.github/workflows/reusable_linter.yml b/.github/workflows/reusable_linter.yml index 8c2236e..790acc4 100644 --- a/.github/workflows/reusable_linter.yml +++ b/.github/workflows/reusable_linter.yml @@ -70,7 +70,7 @@ jobs: node-version: latest - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -111,7 +111,7 @@ jobs: node-version: latest - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -132,7 +132,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ inputs.repository }} diff --git a/.github/workflows/reusable_phplinter.yml b/.github/workflows/reusable_phplinter.yml index 30e930a..94d2d6b 100644 --- a/.github/workflows/reusable_phplinter.yml +++ b/.github/workflows/reusable_phplinter.yml @@ -31,7 +31,7 @@ jobs: run: exit 1 - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ inputs.repository }}