Skip to content

Commit

Permalink
ci: updata dependencies of workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tolking committed Jun 2, 2024
1 parent 75be7b9 commit 52842db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install
run: pnpm i
run: pnpm i --frozen-lockfile

- name: Build
run: pnpm build:docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install
run: pnpm i
run: pnpm i --frozen-lockfile

- name: Build
run: pnpm build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install
run: pnpm i
run: pnpm i --frozen-lockfile

- name: Test build
run: pnpm build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: latest

Expand All @@ -29,7 +29,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm i
run: pnpm i --frozen-lockfile

- name: Lint and Type Check
run: pnpm check
Expand Down

0 comments on commit 52842db

Please sign in to comment.