Skip to content

Commit ec29f85

Browse files
committed
Use Ubuntu 22.04 in all jobs
Trying to fix "No module named 'poetry'"
1 parent 0b95d9c commit ec29f85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cicd.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515

1616
lint:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-22.04
1818
name: lint with isort, Black & flake8
1919
steps:
2020
- uses: actions/checkout@v3
@@ -37,7 +37,7 @@ jobs:
3737
poetry run flake8
3838
3939
test:
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-22.04
4141
timeout-minutes: 15
4242
strategy:
4343
matrix:
@@ -96,7 +96,7 @@ jobs:
9696
publish-docker-latest:
9797
name: publish latest Docker image
9898
needs: [lint, test]
99-
runs-on: ubuntu-20.04
99+
runs-on: ubuntu-22.04
100100
timeout-minutes: 15
101101
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
102102
steps:
@@ -123,7 +123,7 @@ jobs:
123123
publish-release:
124124
name: publish release
125125
needs: [lint, test]
126-
runs-on: ubuntu-20.04
126+
runs-on: ubuntu-22.04
127127
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
128128
steps:
129129
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)