We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1206308 commit cefd802Copy full SHA for cefd802
.github/actions/install-dependencies/action.yaml
@@ -7,9 +7,9 @@ runs:
7
8
steps:
9
- name: Install pnpm 📦
10
- uses: pnpm/action-setup@v2.2.4
+ uses: pnpm/action-setup@v3.0.0
11
with:
12
- version: 8
+ version: 9
13
run_install: false
14
15
- name: Setup pnpm config 📖
@@ -23,7 +23,7 @@ runs:
23
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
24
25
- name: Setup pnpm cache 🧃
26
- uses: actions/cache@v3
+ uses: actions/cache@v4
27
28
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
29
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -33,5 +33,3 @@ runs:
33
- name: Install dependencies 👨🏻💻
34
run: pnpm install --frozen-lockfile --ignore-scripts
35
shell: bash
36
-
37
0 commit comments