Skip to content

Commit 685976b

Browse files
committed
updating gh 'actions/cache' away from deprecated v2
1 parent f450e7a commit 685976b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
with:
104104
node-version: '16.x'
105105
- name: Cache Node.js modules
106-
uses: actions/cache@v2
106+
uses: actions/cache@v4
107107
with:
108108
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
109109
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}

.github/workflows/release-helper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
node-version: "16.x"
123123
- name: Cache Node.js modules
124-
uses: actions/cache@v2
124+
uses: actions/cache@v4
125125
with:
126126
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
127127
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}

.github/workflows/update_gdocs_data.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-python@v2
1515
with:
1616
python-version: 3.8
17-
- uses: actions/cache@v2
17+
- uses: actions/cache@v4
1818
with:
1919
path: ~/.cache/pip
2020
key: ${{ runner.os }}-pipd-${{ hashFiles('requirements.dev.txt') }}

0 commit comments

Comments
 (0)