Skip to content

Commit ea0d2aa

Browse files
authored
Merge pull request #197 from learningequality/dependabot/github_actions/github-97f38a5d32
Bump actions/cache from 4 to 5 in the github group
2 parents 50476b8 + 5b42910 commit ea0d2aa

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: 3.9
1919
- name: Cache pip
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-py3.9-${{ hashFiles('.github/workflows/npm-publish.yml') }}

.github/workflows/pythontest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python-version: ${{ matrix.python-version }}
3838
- name: Cache pip
3939
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: ~/.cache/pip
4343
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }}
@@ -48,7 +48,7 @@ jobs:
4848
pip install tox
4949
- name: tox env cache
5050
if: ${{ needs.pre_job.outputs.should_skip != 'true' && !startsWith(runner.os, 'windows') }}
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
5454
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }}
@@ -71,7 +71,7 @@ jobs:
7171
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
7272
- name: Cache pip
7373
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
74-
uses: actions/cache@v4
74+
uses: actions/cache@v5
7575
with:
7676
path: ~/.cache/pip
7777
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }}
@@ -82,7 +82,7 @@ jobs:
8282
pip install tox
8383
- name: tox env cache
8484
if: ${{ needs.pre_job.outputs.should_skip != 'true' && !startsWith(runner.os, 'windows') }}
85-
uses: actions/cache@v4
85+
uses: actions/cache@v5
8686
with:
8787
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
8888
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }}

0 commit comments

Comments
 (0)