Skip to content

Commit e97912e

Browse files
authored
Fix deprecated github actions
1 parent edd98fa commit e97912e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/daily-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.9
2828
- name: Attempt to use cached dependencies
2929
id: cache-python
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ${{ env.pythonLocation }}
3333
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: 3.9
2222
- name: Attempt to use cached dependencies
2323
id: cache-python
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: ${{ env.pythonLocation }}
2727
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements-dev.txt') }}

.github/workflows/weekly-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.9
2828
- name: Attempt to use cached dependencies
2929
id: cache-python
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ${{ env.pythonLocation }}
3333
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements-dev.txt') }}

0 commit comments

Comments
 (0)