Skip to content

Commit

Permalink
fix: action version
Browse files Browse the repository at this point in the history
  • Loading branch information
KairuiLiu committed Apr 21, 2024
1 parent 64cc70a commit 5b42792
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '21'

- name: Cache pnpm modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.1.0
- uses: pnpm/action-setup@v3.0.0
with:
version: 6.0.2
version: latest
run_install: true

- name: Build server
Expand Down

0 comments on commit 5b42792

Please sign in to comment.