Skip to content

Commit 779a190

Browse files
committed
update ubuntu version in ci action
1 parent 8b4c285 commit 779a190

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ci
33
on: [push]
44
jobs:
55
compile:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-latest
77
strategy:
88
matrix:
99
python-version: ["3.9", "3.10", "3.11"]
@@ -22,7 +22,7 @@ jobs:
2222
- name: Compile
2323
run: poetry run mypy .
2424
test:
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
2828
python-version: ["3.9", "3.10", "3.11"]
@@ -52,7 +52,7 @@ jobs:
5252
publish:
5353
needs: [compile, test]
5454
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
55-
runs-on: ubuntu-20.04
55+
runs-on: ubuntu-latest
5656
steps:
5757
- name: Checkout repo
5858
uses: actions/checkout@v3

0 commit comments

Comments
 (0)