Skip to content

Commit 47f714e

Browse files
author
Cole Kennedy
committed
Fix test workflow and update to Node 20
- Added Node.js setup and dependency installation to the test workflow - Updated action to use Node 20 instead of Node 16 - Ensures dependencies are properly installed before action runs
1 parent 6c76c70 commit 47f714e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yml

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717

18+
- name: Setup Node.js
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: '16'
22+
23+
- name: Install dependencies
24+
run: npm ci
1825

1926
- name: Run nested action with wrapper (using time)
2027
uses: ./

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ outputs:
117117
git_oid:
118118
description: "GitOID of the attestation (if created)"
119119
runs:
120-
using: "node16"
120+
using: "node20"
121121
main: "index.js"
122122

123123
branding:

0 commit comments

Comments
 (0)