Skip to content

Commit c2eebf0

Browse files
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](actions/checkout@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] <[email protected]>
1 parent 0ce0761 commit c2eebf0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.event.pull_request.draft == false
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
1919
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/php-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.event.pull_request.draft == false
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
1919
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
options: ${{ matrix.db-options }}
7272

7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
with:
7676
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
7777
ref: ${{ github.event.client_payload.pull_request.head.ref }}
@@ -124,7 +124,7 @@ jobs:
124124
DBA_MODE: ${{ matrix.mode }}
125125

126126
steps:
127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128
with:
129129
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
130130
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/tests-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- 5432:5432
3939

4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
4444
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
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' }}
124124

125125
steps:
126-
- uses: actions/checkout@v5
126+
- uses: actions/checkout@v6
127127
with:
128128
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
129129
ref: ${{ github.event.client_payload.pull_request.head.ref }}
@@ -178,7 +178,7 @@ jobs:
178178
DBA_MODE: ${{ matrix.mode }}
179179

180180
steps:
181-
- uses: actions/checkout@v5
181+
- uses: actions/checkout@v6
182182
with:
183183
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
184184
ref: ${{ github.event.client_payload.pull_request.head.ref }}

0 commit comments

Comments
 (0)