Skip to content

Commit 65a4f46

Browse files
chore: update GitHub Actions workflow to use actions/checkout@v4 and actions/setup-node@v4 with Node.js version 20.x
1 parent 9be05b3 commit 65a4f46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: ./.github/actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Node.js
17-
uses: ./.github/actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: "14" # Specify the Node.js version you want to use
19+
node-version: '20.x'
2020
registry-url: "https://registry.npmjs.org"
2121

2222
- name: Install dependencies

0 commit comments

Comments
 (0)