Skip to content

Commit

Permalink
update gh actions ver
Browse files Browse the repository at this point in the history
  • Loading branch information
ynshung authored Jan 28, 2024
1 parent 0809f69 commit 8388309
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "npm"

- name: Install dependencies
Expand All @@ -23,7 +23,7 @@ jobs:
run: npm run build

- name: Upload Chrome extension
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bys-chrome-${{ github.sha }}
path: dist
Expand All @@ -32,7 +32,7 @@ jobs:
run: npm run build:firefox -- --skip-build

- name: Upload Firefox extension
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bys-firefox-${{ github.sha }}
path: dist

0 comments on commit 8388309

Please sign in to comment.