Skip to content

Commit 00bd0b6

Browse files
authored
[CICD-606] Update actions/checkout@v4, node v20 (#98)
* [CICD-606] Update actions/checkout to v4 * [CICD-606] Update node to v20, npm to v9
1 parent fd7a21c commit 00bd0b6

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/e2e-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run_action:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Bump test plugin version number
2222
run: sed -i 's/0.0.1/0.0.2/' tests/data/plugins/test-plugin/test-plugin.php
2323
- name: GitHub Action Deploy to WP Engine

.github/workflows/lint-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Lint files
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
- run: echo "Running shell script lint!"
1818
- run: find . -name "*.sh" -type f | xargs -I {} shellcheck --severity=error {}
1919
- run: echo "Running yml file lint!"

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
version: ${{ steps.version.outputs.CURRENT_VERSION }}
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

21-
- name: Setup Node.js 16.x
21+
- name: Setup Node.js 20.x
2222
uses: actions/setup-node@v2
2323
with:
24-
node-version: 16.x
24+
node-version: 20.x
2525

2626
- name: Install Dependencies
2727
run: npm ci
@@ -47,7 +47,7 @@ jobs:
4747
if: needs.versioning.outputs.hasChangesets == 'false'
4848
steps:
4949
- name: Checkout Repo
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
fetch-depth: 0
5353

@@ -56,10 +56,10 @@ jobs:
5656
git config user.name github-actions[bot]
5757
git config user.email github-actions[bot]@users.noreply.github.com
5858
59-
- name: Setup Node.js 16.x
59+
- name: Setup Node.js 20.x
6060
uses: actions/setup-node@v2
6161
with:
62-
node-version: 16.x
62+
node-version: 20.x
6363

6464
- name: Publish tags
6565
id: publish

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16
1+
v20

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
build:
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
- name: GitHub Action Deploy to WP Engine
5858
uses: wpengine/github-action-wpe-site-deploy@v3
5959
with:
@@ -73,7 +73,7 @@ jobs:
7373
build:
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v3
76+
- uses: actions/checkout@v4
7777
- name: GitHub Action Deploy to WP Engine
7878
uses: wpengine/github-action-wpe-site-deploy@v3
7979
with:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.2.5",
44
"private": true,
55
"engines": {
6-
"node": ">=16",
7-
"npm": ">=8"
6+
"node": ">=20",
7+
"npm": ">=9"
88
},
99
"dependencies": {},
1010
"devDependencies": {

0 commit comments

Comments
 (0)