Skip to content

Commit

Permalink
ci: update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
broofa committed Sep 7, 2023
1 parent 8e43c08 commit a4ffac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -12,18 +12,18 @@ jobs:
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 10
- name: Use Node.js 18.x to build
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm install
- run: npm run build
- run: rm -rf node_modules
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit a4ffac9

Please sign in to comment.