File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -42,30 +42,30 @@ jobs:
42
42
runs-on : ubuntu-latest
43
43
steps :
44
44
- name : Checkout Repo
45
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
46
46
47
47
- name : Setup Node.js 22
48
- uses : actions/setup-node@v3
48
+ uses : actions/setup-node@v4
49
49
with :
50
50
node-version : 22
51
51
52
- - uses : pnpm/action-setup@v3
52
+ - uses : pnpm/action-setup@v4
53
53
name : Install pnpm
54
- with :
55
- run_install : false
54
+ # with:
55
+ # run_install: false
56
56
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
61
61
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-
69
69
70
70
- name : Install Dependencies
71
71
run : pnpm i
You can’t perform that action at this time.
0 commit comments