Skip to content

Commit d96d0f7

Browse files
committed
Merge rust-bitcoin#4188: ci: update Kani GitHub Actions runners to ubuntu-24.04
e3f409e ci: update Kani GitHub Actions runners to ubuntu-24.04 (Erick Cestari) Pull request description: GitHub is deprecating the ubuntu-20.04 runner, with removal scheduled for 2025-04-01 (see [GitHub Issue #11101](actions/runner-images#11101)). This PR updates the CI/CD workflows to use ubuntu-24.04 instead of ubuntu-20.04 for the following workflows: - cron-daily-kani.yml - rust.yml (Kani codegen job) This change should resolve the CI/CD error in the Kani codegen - stable toolchain job triggered by pull requests. ACKs for top commit: Kixunil: ACK e3f409e apoelstra: ACK e3f409e; successfully ran local tests Tree-SHA512: 7e235b68226042937e7269cccae4850cd33cc09c1546a068542903bf9756aaf77155fce3991f899b8470bc97a7115c7ed22e4f09a4c4f4061897a0b18a993487
2 parents 16860fe + e3f409e commit d96d0f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cron-daily-kani.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- cron: '59 23 * * *' # midnight every day.
66
jobs:
77
run-kani:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: 'Checkout your code.'
1111
uses: actions/checkout@v4

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296

297297
Kani:
298298
name: Kani codegen - stable toolchain
299-
runs-on: ubuntu-20.04
299+
runs-on: ubuntu-24.04
300300
steps:
301301
- name: "Checkout repo"
302302
uses: actions/checkout@v4

0 commit comments

Comments
 (0)