Skip to content

Commit 41f3351

Browse files
Update github workflows
Generated by renovateBot
1 parent be92457 commit 41f3351

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/build-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run:
2727
working-directory: ${{ env.PACKAGE_DIR }}
2828
steps:
29-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
29+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3030
with:
3131
submodules: true
3232

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838

3939
steps:
40-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
40+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
4141
with:
4242
submodules: recursive
4343

.github/workflows/build-protocol.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run:
2929
working-directory: ${{ env.PACKAGE_DIR }}
3030
steps:
31-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
31+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3232
with:
3333
submodules: true
3434
ref: ${{ github.event.pull_request.head.ref }}
@@ -58,7 +58,7 @@ jobs:
5858
run:
5959
working-directory: ${{ env.PACKAGE_DIR }}
6060
steps:
61-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
61+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
6262
with:
6363
submodules: true
6464

.github/workflows/build-rtc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run:
2929
working-directory: ${{ env.PACKAGE_DIR }}
3030
steps:
31-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
31+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3232
with:
3333
submodules: true
3434
ref: ${{ github.event.pull_request.head.ref }}
@@ -75,14 +75,14 @@ jobs:
7575
run:
7676
working-directory: ${{ env.PACKAGE_DIR }}
7777
steps:
78-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
78+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
7979
with:
8080
submodules: true
8181

8282
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
8383
id: setup-python
8484
with:
85-
python-version: "3.11"
85+
python-version: "3.14"
8686

8787
- name: Build wheels
8888
run: pipx run --python '${{ steps.setup-python.outputs.python-path }}' cibuildwheel==3.3.1 --output-dir dist
@@ -101,7 +101,7 @@ jobs:
101101
run:
102102
working-directory: ${{ env.PACKAGE_DIR }}
103103
steps:
104-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
104+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
105105
with:
106106
submodules: true
107107

.github/workflows/check-types.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
16+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
1717
with:
1818
submodules: recursive
1919

2020
- name: Set up Python 3.9
2121
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
2222
with:
23-
python-version: 3.9
23+
python-version: 3.14
2424

2525
- name: Install uv
2626
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0

.github/workflows/publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
if: github.event_name == 'workflow_dispatch'
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
50+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
5151
with:
5252
ref: ${{ inputs.branch }}
5353
submodules: true
@@ -68,7 +68,7 @@ jobs:
6868
- name: Set up Python
6969
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
7070
with:
71-
python-version: "3.10"
71+
python-version: "3.14"
7272

7373
- name: Install dependencies
7474
run: pip install click packaging
@@ -182,7 +182,7 @@ jobs:
182182
needs: detect
183183
runs-on: ubuntu-latest
184184
steps:
185-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
185+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
186186
with:
187187
ref: ${{ github.event.pull_request.merge_commit_sha }}
188188

@@ -217,14 +217,14 @@ jobs:
217217
run:
218218
working-directory: ./livekit-rtc
219219
steps:
220-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
220+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
221221
with:
222222
submodules: true
223223

224224
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
225225
id: setup-python
226226
with:
227-
python-version: "3.11"
227+
python-version: "3.14"
228228

229229
- name: Build wheels
230230
run: pipx run --python '${{ steps.setup-python.outputs.python-path }}' cibuildwheel==3.3.1 --output-dir dist
@@ -245,7 +245,7 @@ jobs:
245245
run:
246246
working-directory: ./livekit-rtc
247247
steps:
248-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
248+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
249249
with:
250250
submodules: true
251251

@@ -291,7 +291,7 @@ jobs:
291291
run:
292292
working-directory: ./livekit-api
293293
steps:
294-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
294+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
295295
with:
296296
submodules: true
297297

@@ -340,7 +340,7 @@ jobs:
340340
run:
341341
working-directory: ./livekit-protocol
342342
steps:
343-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
343+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
344344
with:
345345
submodules: true
346346

.github/workflows/ruff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
7+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
88
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
99
with:
10-
python-version: "3.9"
10+
python-version: "3.14"
1111

1212
- name: Install uv
1313
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Test (${{ inputs.os }}, Python ${{ inputs.python-version }})
3333
runs-on: ${{ inputs.os }}
3434
steps:
35-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
35+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3636
with:
3737
submodules: true
3838
lfs: true

0 commit comments

Comments
 (0)