Skip to content

Commit d294cb7

Browse files
authored
Merge pull request #63 from webflow/fix-ci-runner-image
fix: update ubuntu image on ci
2 parents 333b078 + 152eccd commit d294cb7

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-24.04
77
steps:
88
- name: Checkout repo
99
uses: actions/checkout@v3
@@ -19,7 +19,7 @@ jobs:
1919
- name: Compile
2020
run: poetry run mypy .
2121
test:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout repo
2525
uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
3939
publish:
4040
needs: [compile, test]
4141
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-24.04
4343
steps:
4444
- name: Checkout repo
4545
uses: actions/checkout@v3

0 commit comments

Comments
 (0)