Skip to content

Commit cccb990

Browse files
authored
fix: action
1 parent 30564ae commit cccb990

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/on-commit.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,30 +42,30 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout Repo
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
- name: Setup Node.js 22
48-
uses: actions/setup-node@v3
48+
uses: actions/setup-node@v4
4949
with:
5050
node-version: 22
5151

52-
- uses: pnpm/action-setup@v3
52+
- uses: pnpm/action-setup@v4
5353
name: Install pnpm
54-
with:
55-
run_install: false
54+
# with:
55+
# run_install: false
5656

57-
- name: Get pnpm store directory
58-
shell: bash
59-
run: |
60-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
57+
# - name: Get pnpm store directory
58+
# shell: bash
59+
# run: |
60+
# echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
6161

62-
- uses: actions/cache@v4
63-
name: Setup pnpm cache
64-
with:
65-
path: ${{ env.STORE_PATH }}
66-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
67-
restore-keys: |
68-
${{ runner.os }}-pnpm-store-
62+
# - uses: actions/cache@v4
63+
# name: Setup pnpm cache
64+
# with:
65+
# path: ${{ env.STORE_PATH }}
66+
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
67+
# restore-keys: |
68+
# ${{ runner.os }}-pnpm-store-
6969

7070
- name: Install Dependencies
7171
run: pnpm i

0 commit comments

Comments
 (0)