Skip to content

Commit 32df80b

Browse files
authored
test(deps): update action/cache to v4 (#1111)
1 parent 03f1f60 commit 32df80b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/example-basic-pnpm.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
2626
2727
- name: Setup pnpm cache
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ${{ env.STORE_PATH }}
3131
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}
@@ -62,7 +62,7 @@ jobs:
6262
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
6363
6464
- name: Setup pnpm cache
65-
uses: actions/cache@v3
65+
uses: actions/cache@v4
6666
with:
6767
path: ${{ env.STORE_PATH }}
6868
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}
@@ -92,7 +92,7 @@ jobs:
9292
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
9393
9494
- name: Setup pnpm cache
95-
uses: actions/cache@v3
95+
uses: actions/cache@v4
9696
with:
9797
path: ${{ env.STORE_PATH }}
9898
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}
@@ -122,7 +122,7 @@ jobs:
122122
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
123123
124124
- name: Setup pnpm cache
125-
uses: actions/cache@v3
125+
uses: actions/cache@v4
126126
with:
127127
path: ${{ env.STORE_PATH }}
128128
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}
@@ -155,7 +155,7 @@ jobs:
155155
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
156156
157157
- name: Setup pnpm cache
158-
uses: actions/cache@v3
158+
uses: actions/cache@v4
159159
with:
160160
path: ${{ env.STORE_PATH }}
161161
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}

.github/workflows/example-install-only.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# (which is important when using ^ version in package.json)
2323
# see https://github.com/actions/cache
2424
- name: Cache npm and Cypress 📦
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: |
2828
~/.cache/Cypress

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ jobs:
11201120
run: |
11211121
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
11221122
- name: Setup pnpm cache
1123-
uses: actions/cache@v3
1123+
uses: actions/cache@v4
11241124
with:
11251125
path: ${{ env.STORE_PATH }}
11261126
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('examples/basic-pnpm/pnpm-lock.yaml') }}
@@ -1332,7 +1332,7 @@ If the project has many dependencies, but you want to install just Cypress you c
13321332

13331333
```yml
13341334
- uses: actions/checkout@v4
1335-
- uses: actions/cache@v2
1335+
- uses: actions/cache@v4
13361336
with:
13371337
path: |
13381338
~/.cache/Cypress

0 commit comments

Comments
 (0)