Skip to content

Commit 0f5a288

Browse files
authored
Merge branch 'master' into feature/connect_ipv6
2 parents 36455cc + acca568 commit 0f5a288

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
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
@@ -39,7 +39,7 @@ jobs:
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:

.github/workflows/codeql.yml

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

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v6
49+
uses: actions/checkout@v7
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121

2222
- name: Set up Python
2323
uses: actions/setup-python@v6

.github/workflows/refresh_token.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out code from Github
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919

2020
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
2121
id: python
@@ -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@v5
28+
uses: actions/cache@v6
2929
with:
3030
path: venv
3131
key: >-

requirements_dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
# pip install -r requirements_dev.txt
44
#---------------------------------------------------------
55
flake8==7.3.0
6-
pillow==12.2.0
7-
pyjwt[crypto]==2.12.1
8-
pytest==9.0.3
6+
pillow==12.3.0
7+
pyjwt[crypto]==2.13.0
8+
pytest==9.1.1
99
pytest-cache==1.0
1010
pytest-cov==7.1.0
1111
pytest-mock==3.15.1
1212
recommonmark==0.7.1
13-
requests==2.33.1
13+
requests==2.34.2
1414
requests-mock==1.12.1
1515
sphinx==8.1.3
1616
sphinx-rtd-theme==3.1.0
17-
tqdm==4.67.3
17+
tqdm==4.68.4
1818
websocket-client==1.9.0

0 commit comments

Comments
 (0)