Skip to content

Commit 06674da

Browse files
♻️ Upgrade CI workflows to use Ubuntu 22.04
1 parent 1a61360 commit 06674da

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
check-style:
1111
name: Find Trailing Whitespace
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Find Trailing Whitespace
@@ -26,7 +26,7 @@ jobs:
2626
2727
build:
2828
name: Generate python files from ui
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-22.04
3030
steps:
3131
- uses: actions/checkout@v4
3232
- name: Remove broken apt repos [Ubuntu]
@@ -47,7 +47,7 @@ jobs:
4747
path: robot_log_visualizer/ui/autogenerated
4848

4949
deploy:
50-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-22.04
5151
needs: [build]
5252
if: github.ref == 'refs/heads/main'
5353
steps:

.github/workflows/pypi-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version:
2020
- 3.8
2121
os:
22-
- ubuntu-20.04
22+
- ubuntu-22.04
2323
# - macos-latest
2424
# - windows-latest
2525

@@ -48,7 +48,7 @@ jobs:
4848

4949
deploy_test_PyPI:
5050
name: 📦 Deploy to TestPyPI
51-
runs-on: ubuntu-20.04
51+
runs-on: ubuntu-22.04
5252
needs: [build_wheels]
5353
if: github.ref == 'refs/heads/main'
5454
steps:
@@ -68,7 +68,7 @@ jobs:
6868

6969
deploy_PyPI:
7070
name: 📦 Deploy to PyPI
71-
runs-on: ubuntu-20.04
71+
runs-on: ubuntu-22.04
7272
needs: [build_wheels]
7373
if: startsWith(github.ref, 'refs/tags')
7474
steps:

0 commit comments

Comments
 (0)