Skip to content

Commit 02f767b

Browse files
Bump actions/cache from 4 to 5 (#98)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e8ce5ab commit 02f767b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: '3.12'
2828

2929
- name: Restore cached venv
30-
uses: actions/cache/restore@v4
30+
uses: actions/cache/restore@v5
3131
with:
3232
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('requirements-ci-app.txt', 'requirements.txt') }}
3333
path: .venv
@@ -41,7 +41,7 @@ jobs:
4141
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV
4242
4343
- name: Saved cached venv
44-
uses: actions/cache/save@v4
44+
uses: actions/cache/save@v5
4545
with:
4646
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('requirements-ci-app.txt', 'requirements.txt') }}
4747
path: .venv

.github/workflows/publish-model.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: '3.12'
2121

2222
- name: Restore cached venv
23-
uses: actions/cache/restore@v4
23+
uses: actions/cache/restore@v5
2424
with:
2525
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('requirements-ci-model.txt') }}
2626
path: .venv
@@ -34,7 +34,7 @@ jobs:
3434
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV
3535
3636
- name: Saved cached venv
37-
uses: actions/cache/save@v4
37+
uses: actions/cache/save@v5
3838
with:
3939
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('requirements-ci-model.txt') }}
4040
path: .venv

0 commit comments

Comments
 (0)