Skip to content

Commit e697d32

Browse files
authored
Merge pull request #50 from nerc-project/fix-lint-action
use actions/cache@v4 in lint workflow
2 parents 9f79c26 + f7a6059 commit e697d32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: '^3.9'
2020

2121
- name: Configure caching (python)
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: ${{ env.pythonLocation }}
2525
key: ${{ env.pythonLocation }}-${{ hashFiles('test-requirements.txt') }}
@@ -29,7 +29,7 @@ jobs:
2929
pip install --upgrade --upgrade-strategy eager -r test-requirements.txt
3030
3131
- name: Configure caching (pre-commit)
32-
uses: actions/cache@v2
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.cache/pre-commit
3535
key: precommit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@v2
5050

5151
- name: Configure caching
52-
uses: actions/cache@v2
52+
uses: actions/cache@v4
5353
with:
5454
path: ~/.cache/bin
5555
key: kustomize-${{ runner.os }}-${{ env.KUSTOMIZE_VERSION }}

0 commit comments

Comments
 (0)