Skip to content

Commit

Permalink
workflow: 使用旧版本的 action
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Mar 24, 2024
1 parent 3190464 commit e8207ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
image: node:10.24.1

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- name: Install dependencies
run: npm install

- uses: actions/cache@v4
- uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -26,7 +26,7 @@ jobs:
image: node:10.24.1

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- name: Build
run: npm run build
Expand All @@ -38,7 +38,7 @@ jobs:
image: alpine:latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- name: Prepare environment
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
zip -r icon-font.zip *
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v2
with:
name: icon-font.zip
path: icon-font/icon-font.zip

0 comments on commit e8207ff

Please sign in to comment.