Skip to content

Commit 8ba1747

Browse files
lacop11louisjoecodes
authored andcommitted
Bump CI runners from ubuntu-20.04 to ubuntu-24.04
From github notification: > The Ubuntu 20.04 runner image will be fully unsupported by April 1, 2025. > Jobs using the ubuntu-20.04 YAML workflow label should be updated to ubuntu-22.04, ubuntu-24.04 or ubuntu-latest.
1 parent 42de811 commit 8ba1747

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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
@@ -41,7 +41,7 @@ jobs:
4141
publish:
4242
needs: [compile, test]
4343
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
44-
runs-on: ubuntu-20.04
44+
runs-on: ubuntu-24.04
4545
steps:
4646
- name: Checkout repo
4747
uses: actions/checkout@v3

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test SDK
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

0 commit comments

Comments
 (0)