Skip to content

Commit de5c91f

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b698c07 commit de5c91f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Restore Python ${{ steps.python.outputs.python-version }} virtual environment
3232
id: cache-venv
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: venv
3636
key: >-
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Restore Python ${{ steps.python.outputs.python-version }} virtual environment
9696
id: cache-venv
97-
uses: actions/cache@v4
97+
uses: actions/cache@v5
9898
with:
9999
path: venv
100100
key: >-
@@ -135,7 +135,7 @@ jobs:
135135
136136
- name: Restore cached PMS Docker image
137137
id: docker-cache
138-
uses: actions/cache/restore@v4
138+
uses: actions/cache/restore@v5
139139
with:
140140
path: ~/.cache/docker/plexinc
141141
key: ${{ runner.os }}-docker-pms-${{ steps.docker-digest.outputs.digest }}
@@ -210,7 +210,7 @@ jobs:
210210

211211
- name: Save PMS Docker image cache
212212
if: always() && steps.docker-cache.outputs.cache-hit != 'true'
213-
uses: actions/cache/save@v4
213+
uses: actions/cache/save@v5
214214
with:
215215
key: ${{ steps.docker-cache.outputs.cache-primary-key }}
216216
path: ~/.cache/docker/plexinc
@@ -240,7 +240,7 @@ jobs:
240240

241241
- name: Restore Python ${{ steps.python.outputs.python-version }} virtual environment
242242
id: cache-venv
243-
uses: actions/cache@v4
243+
uses: actions/cache@v5
244244
with:
245245
path: venv
246246
key: >-

.github/workflows/refresh_token.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Restore Python ${{ steps.python.outputs.python-version }} virtual environment
2727
id: cache-venv
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: venv
3131
key: >-

0 commit comments

Comments
 (0)