Skip to content

Commit 2ce29e7

Browse files
Bump actions/checkout from v4 to v5 (#902)
`actions/checkout@v4` runs on Node.js 20, which is deprecated in GitHub Actions and will be forced to Node.js 24 by default on June 2nd, 2026. ## Changes - Updated `actions/checkout@v4` → `actions/checkout@v5` across all affected workflows: - `lint.yml` - `phpstan.yml` - `release.yml` - `continuous-integration.yml` - `style-check.yml` - `continuous-integration-32-bits.yml` - `update-changelog.yml` - `code-cov.yml` `copilot-setup-steps.yml` was already on `v5` and required no change. <!-- START COPILOT CODING AGENT TIPS --> --- 📍 Connect Copilot coding agent with [Jira](https://gh.io/cca-jira-docs), [Azure Boards](https://gh.io/cca-azure-boards-docs) or [Linear](https://gh.io/cca-linear-docs) to delegate work to Copilot in one click without leaving your project management tool. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: DannyvdSluijs <618940+DannyvdSluijs@users.noreply.github.com>
1 parent 7a56bfc commit 2ce29e7

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/code-cov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: "Checkout"
22-
uses: "actions/checkout@v4"
22+
uses: "actions/checkout@v5"
2323

2424
- name: "Install PHP"
2525
uses: "shivammathur/setup-php@v2"

.github/workflows/continuous-integration-32-bits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout"
25-
uses: "actions/checkout@v4"
25+
uses: "actions/checkout@v5"
2626

2727
- name: "Install PHP"
2828
uses: "shivammathur/setup-php@v2"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout"
37-
uses: "actions/checkout@v4"
37+
uses: "actions/checkout@v5"
3838

3939
- name: "Install PHP"
4040
uses: "shivammathur/setup-php@v2"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: "Checkout"
26-
uses: "actions/checkout@v4"
26+
uses: "actions/checkout@v5"
2727

2828
- name: "Install PHP"
2929
uses: "shivammathur/setup-php@v2"

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout"
28-
uses: "actions/checkout@v4"
28+
uses: "actions/checkout@v5"
2929

3030
- name: "Install PHP"
3131
uses: "shivammathur/setup-php@v2"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout"
35-
uses: "actions/checkout@v4"
35+
uses: "actions/checkout@v5"
3636
with:
3737
ref: main
3838
fetch-depth: 0

.github/workflows/style-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: "Checkout"
21-
uses: "actions/checkout@v4"
21+
uses: "actions/checkout@v5"
2222

2323
- name: "Install PHP"
2424
uses: "shivammathur/setup-php@v2"

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: "Checkout"
20-
uses: "actions/checkout@v4"
20+
uses: "actions/checkout@v5"
2121
with:
2222
ref: main
2323
fetch-depth: 0

0 commit comments

Comments
 (0)