Skip to content

Commit 4ec8c33

Browse files
committed
ci: upgrade actions/checkout to v6 and force Node.js 24 runtime
- Upgraded `actions/checkout` from v4 to v6 to support Node.js 24 natively. - Added `FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true` at the workflow level to resolve deprecation warnings for all other actions. - This ensures the CI environment is future-proof and avoids warnings related to Node.js 20 removal.
1 parent 9ca2f7c commit 4ec8c33

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
on: [push, pull_request]
22

3+
env:
4+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
5+
36
jobs:
47

58
php-intl:
@@ -10,7 +13,7 @@ jobs:
1013
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1114

1215
steps:
13-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1417
with:
1518
fetch-depth: 1
1619

0 commit comments

Comments
 (0)