Skip to content

Commit e51f32d

Browse files
carlbennettclaude
andcommitted
Upgrade actions/checkout and actions/cache to Node.js 24 compatible versions
Node.js 20 is being forced to Node.js 24 on June 16th 2026 and removed September 16th 2026. Upgrade to latest releases ahead of the deadline. actions/checkout v4.3.1 → v6.0.3 (df4cb1c069e1874edd31b4311f1884172cec0e10) actions/cache v4.3.0 → v5.0.5 (27d5ce7f107fe9357f9df03efb73ab90386fccae) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0d16663 commit e51f32d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
25+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2626

2727
- name: Update apt cache
2828
run: sudo apt-get update
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Cache Composer packages
4141
id: composer-cache
42-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
42+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4343
with:
4444
path: lib
4545
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
60+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6161

6262
- name: Update apt cache
6363
run: sudo apt-get update
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Cache Composer packages
7373
id: composer-cache
74-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
74+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
7575
with:
7676
path: lib
7777
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
@@ -91,7 +91,7 @@ jobs:
9191
environment: production
9292
steps:
9393
- name: Checkout Code
94-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
94+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
9595
with:
9696
fetch-depth: 0 # Everything
9797
fetch-tags: true
@@ -108,7 +108,7 @@ jobs:
108108
109109
- name: Cache Composer packages
110110
id: composer-cache
111-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
111+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
112112
with:
113113
path: lib
114114
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)