Skip to content

Commit

Permalink
Updated to current versions of Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
palant committed Jun 21, 2024
1 parent 952b7d2 commit 1e2c46c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
node-version: 17.x

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- name: Upload build-chrome artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-chrome ${{ matrix.node-version }} ${{ matrix.os }}
path: build-chrome
- name: Upload build-firefox artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-firefox ${{ matrix.node-version }} ${{ matrix.os }}
path: build-firefox

0 comments on commit 1e2c46c

Please sign in to comment.