From c2eebf04ede498bbc0e82091e495fbe09c69211b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 20:06:52 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/code-style.yml | 2 +- .github/workflows/php-linter.yml | 2 +- .github/workflows/phpstan.yml | 4 ++-- .github/workflows/tests-postgres.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index 907ed0a3..df412f77 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -13,7 +13,7 @@ jobs: if: github.event.pull_request.draft == false steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} diff --git a/.github/workflows/php-linter.yml b/.github/workflows/php-linter.yml index c9e2ddd0..ba756222 100644 --- a/.github/workflows/php-linter.yml +++ b/.github/workflows/php-linter.yml @@ -13,7 +13,7 @@ jobs: if: github.event.pull_request.draft == false steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 357cdfc1..519e8833 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -71,7 +71,7 @@ jobs: options: ${{ matrix.db-options }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} @@ -124,7 +124,7 @@ jobs: DBA_MODE: ${{ matrix.mode }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} diff --git a/.github/workflows/tests-postgres.yml b/.github/workflows/tests-postgres.yml index 25be21cf..2cc13482 100644 --- a/.github/workflows/tests-postgres.yml +++ b/.github/workflows/tests-postgres.yml @@ -38,7 +38,7 @@ jobs: - 5432:5432 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e31a23f2..c166ea35 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -123,7 +123,7 @@ jobs: options: ${{ startsWith(matrix.db-image, 'mariadb') && '--health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=1s --health-timeout=10s --health-retries=60' || '--health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} @@ -178,7 +178,7 @@ jobs: DBA_MODE: ${{ matrix.mode }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }}