8000 Update build.yml to use Ubuntu 22 instead of 20 (#189) · MarshalX/python-webrtc@0e35be7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0e35be7

Browse files
authored
Update build.yml to use Ubuntu 22 instead of 20 (#189)
1 parent 9d4f977 commit 0e35be7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
name: Build
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414

1515
steps:
1616
- name: Checkout repository.
@@ -19,11 +19,11 @@ jobs:
1919
submodules: recursive
2020

2121
- name: Setup Python.
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2323
with:
24-
python-version: 3.9
24+
python-version: '3.10'
2525

2626
- name: Build.
2727
run: |
28-
sudo apt install -y python3.9-dev
28+
sudo apt install -y python3.10-dev
2929
python setup.py build

0 commit comments

Comments
 (0)
0