Skip to content

Commit b5d4e54

Browse files
committed
ci(runners): upgrade CI runners to Ubuntu 22.04 (#726)
1 parent ee2820e commit b5d4e54

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on: [push, pull_request]
1010

1111
jobs:
1212
lint-commitlint:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3
@@ -36,7 +36,7 @@ jobs:
3636
./run-tests.sh --check-commitlint ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} ${{ github.event.pull_request.number }}
3737
3838
lint-shellcheck:
39-
runs-on: ubuntu-20.04
39+
runs-on: ubuntu-22.04
4040
steps:
4141
- name: Checkout
4242
uses: actions/checkout@v3
@@ -47,7 +47,7 @@ jobs:
4747
./run-tests.sh --check-shellcheck
4848
4949
lint-black:
50-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-22.04
5151
steps:
5252
- name: Checkout
5353
uses: actions/checkout@v3
@@ -63,7 +63,7 @@ jobs:
6363
./run-tests.sh --check-black
6464
6565
lint-flake8:
66-
runs-on: ubuntu-20.04
66+
runs-on: ubuntu-22.04
6767
steps:
6868
- name: Checkout
6969
uses: actions/checkout@v3
@@ -79,7 +79,7 @@ jobs:
7979
./run-tests.sh --check-flake8
8080
8181
lint-pydocstyle:
82-
runs-on: ubuntu-20.04
82+
runs-on: ubuntu-22.04
8383
steps:
8484
- name: Checkout
8585
uses: actions/checkout@v3
@@ -95,7 +95,7 @@ jobs:
9595
./run-tests.sh --check-pydocstyle
9696
9797
lint-check-manifest:
98-
runs-on: ubuntu-20.04
98+
runs-on: ubuntu-22.04
9999
steps:
100100
- name: Checkout
101101
uses: actions/checkout@v3
@@ -111,7 +111,7 @@ jobs:
111111
./run-tests.sh --check-manifest
112112
113113
docs-sphinx:
114-
runs-on: ubuntu-20.04
114+
runs-on: ubuntu-22.04
115115
steps:
116116
- name: Checkout
117117
uses: actions/checkout@v3
@@ -136,7 +136,7 @@ jobs:
136136
run: ./run-tests.sh --check-sphinx
137137

138138
python-tests:
139-
runs-on: ubuntu-20.04
139+
runs-on: ubuntu-22.04
140140
steps:
141141
- name: Checkout
142142
uses: actions/checkout@v3
@@ -165,7 +165,7 @@ jobs:
165165
files: coverage.xml
166166

167167
lint-dockerfile:
168-
runs-on: ubuntu-20.04
168+
runs-on: ubuntu-22.04
169169
steps:
170170
- name: Checkout
171171
uses: actions/checkout@v3
@@ -174,7 +174,7 @@ jobs:
174174
run: ./run-tests.sh --check-dockerfile
175175

176176
docker-build:
177-
runs-on: ubuntu-20.04
177+
runs-on: ubuntu-22.04
178178
steps:
179179
- name: Checkout
180180
uses: actions/checkout@v3
@@ -183,7 +183,7 @@ jobs:
183183
run: ./run-tests.sh --check-docker-build
184184

185185
release-docker:
186-
runs-on: ubuntu-20.04
186+
runs-on: ubuntu-22.04
187187
if: >
188188
vars.RELEASE_DOCKER == 'true' &&
189189
github.event_name == 'push' &&

0 commit comments

Comments
 (0)