Skip to content

Commit 24e2be2

Browse files
chore: bump ubuntu image in ci to 24.04
1 parent 1a06e50 commit 24e2be2

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
security_audit:
1313
name: Security audit
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
defaults:
1616
run:
1717
working-directory: bdk-ffi

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-test:
1212
name: "Build and test"
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
defaults:
1515
run:
1616
working-directory: bdk-ffi
@@ -60,7 +60,7 @@ jobs:
6060

6161
fmt:
6262
name: "Rust fmt"
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-24.04
6464
defaults:
6565
run:
6666
working-directory: bdk-ffi

.github/workflows/kotlin-api-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: workflow_dispatch
44

55
jobs:
66
deploy:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-24.04
88
steps:
99
- name: "Checkout"
1010
uses: actions/checkout@v3

.github/workflows/live-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
jvm-tests:
99
name: "Build and test JVM library on Linux"
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: "Checkout publishing branch"
1313
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353

5454
python-tests:
5555
name: "Build and test Python library on Linux"
56-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-24.04
5757
defaults:
5858
run:
5959
working-directory: bdk-python

.github/workflows/publish-android.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Publish bdk-android to Maven Central
22
on: [workflow_dispatch]
33

4-
# The default Android NDK on the ubuntu-22.04 image is 25.2.9519653
4+
# The default Android NDK on the ubuntu-24.04 image is 25.2.9519653
55

66
jobs:
77
build:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: "Check out PR branch"
1111
uses: actions/checkout@v4

.github/workflows/publish-jvm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
build-full-library:
6464
name: Create full bdk-jvm library
6565
needs: [build-macOS-native-libs, build-windows-native-lib]
66-
runs-on: ubuntu-20.04
66+
runs-on: ubuntu-24.04
6767
steps:
6868
- name: "Checkout publishing branch"
6969
uses: actions/checkout@v4

.github/workflows/publish-python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [workflow_dispatch]
44
jobs:
55
build-manylinux_2_28-x86_64-wheels:
66
name: "Build Manylinux 2.28 x86_64 wheel"
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88
defaults:
99
run:
1010
working-directory: bdk-python
@@ -159,7 +159,7 @@ jobs:
159159

160160
publish-pypi:
161161
name: "Publish on PyPI"
162-
runs-on: ubuntu-20.04
162+
runs-on: ubuntu-24.04
163163
defaults:
164164
run:
165165
working-directory: bdk-python

.github/workflows/test-android.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ on:
1010
- "bdk-ffi/**"
1111
- "bdk-android/**"
1212

13-
# The default Android NDK on the ubuntu-22.04 image is 25.2.9519653
13+
# The default Android NDK on the ubuntu-24.04 image is 25.2.9519653
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- name: "Show default version of NDK"
2020
run: echo $ANDROID_NDK_ROOT

.github/workflows/test-jvm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- name: "Check out PR branch"
1818
uses: actions/checkout@v4

.github/workflows/test-python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build-manylinux_2_28-x86_64-wheels:
1515
name: "Build and test Manylinux 2.28 x86_64 wheels"
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
defaults:
1818
run:
1919
working-directory: bdk-python
@@ -195,7 +195,7 @@ jobs:
195195

196196
ruff:
197197
name: "Lint tests"
198-
runs-on: ubuntu-latest
198+
runs-on: ubuntu-24.04
199199
defaults:
200200
run:
201201
working-directory: bdk-python

0 commit comments

Comments
 (0)