2929 runs-on : ubuntu-latest
3030 steps :
3131 - name : Check out code from Github
32- uses : actions/checkout@v6
32+ uses : actions/checkout@v7
3333
3434 - name : Set up Python ${{ env.DEFAULT_PYTHON }}
3535 id : python
3939
4040 - name : Restore Python ${{ steps.python.outputs.python-version }} virtual environment
4141 id : cache-venv
42- uses : actions/cache@v5
42+ uses : actions/cache@v6
4343 with :
4444 path : venv
4545 key : >-
@@ -102,7 +102,7 @@ jobs:
102102 plex : unclaimed
103103 steps :
104104 - name : Check out code from Github
105- uses : actions/checkout@v6
105+ uses : actions/checkout@v7
106106
107107 - name : Set up Python ${{ env.DEFAULT_PYTHON }}
108108 id : python
@@ -112,7 +112,7 @@ jobs:
112112
113113 - name : Restore Python ${{ steps.python.outputs.python-version }} virtual environment
114114 id : cache-venv
115- uses : actions/cache@v5
115+ uses : actions/cache@v6
116116 with :
117117 path : venv
118118 key : >-
@@ -153,7 +153,7 @@ jobs:
153153
154154 - name : Restore cached PMS Docker image
155155 id : docker-cache
156- uses : actions/cache/restore@v5
156+ uses : actions/cache/restore@v6
157157 with :
158158 path : ~/.cache/docker/plexinc
159159 key : ${{ runner.os }}-docker-pms-${{ steps.docker-digest.outputs.digest }}
@@ -228,7 +228,7 @@ jobs:
228228
229229 - name : Save PMS Docker image cache
230230 if : always() && steps.docker-cache.outputs.cache-hit != 'true'
231- uses : actions/cache/save@v5
231+ uses : actions/cache/save@v6
232232 with :
233233 key : ${{ steps.docker-cache.outputs.cache-primary-key }}
234234 path : ~/.cache/docker/plexinc
@@ -257,7 +257,7 @@ jobs:
257257 plex : unclaimed
258258 steps :
259259 - name : Check out code from GitHub
260- uses : actions/checkout@v6
260+ uses : actions/checkout@v7
261261
262262 - name : Set up Python ${{ env.DEFAULT_PYTHON }}
263263 id : python
@@ -267,7 +267,7 @@ jobs:
267267
268268 - name : Restore Python ${{ steps.python.outputs.python-version }} virtual environment
269269 id : cache-venv
270- uses : actions/cache@v5
270+ uses : actions/cache@v6
271271 with :
272272 path : venv
273273 key : >-
@@ -293,7 +293,7 @@ jobs:
293293 coverage xml
294294
295295 - name : Upload ${{ matrix.plex }} coverage to Codecov
296- uses : codecov/codecov-action@v6
296+ uses : codecov/codecov-action@v7
297297 env :
298298 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
299299 with :
0 commit comments