Skip to content

Commit e3ef88f

Browse files
committed
fix: use ubuntu-latest on all workflows
1 parent 9af0fd4 commit e3ef88f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cont_integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ jobs:
101101
check-wasm:
102102
needs: prepare
103103
name: Check WASM
104-
runs-on: ubuntu-20.04
104+
runs-on: ubuntu-latest
105105
env:
106-
CC: clang-10
106+
CC: clang-14
107107
CFLAGS: -I/usr/include
108108
steps:
109109
- name: Checkout
@@ -113,7 +113,7 @@ jobs:
113113
# Install a recent version of clang that supports wasm32
114114
- run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1
115115
- run: sudo apt-get update || exit 1
116-
- run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1
116+
- run: sudo apt-get install -y libclang-common-14-dev clang-14 libc6-dev-i386 || exit 1
117117
- name: Install Rust toolchain
118118
uses: actions-rs/toolchain@v1
119119
with:

.github/workflows/nightly_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
name: 'Publish docs'
3434
if: github.ref == 'refs/heads/master'
3535
needs: [build_docs]
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-24.04
3737
steps:
3838
- name: Checkout `bitcoindevkit.org`
3939
uses: actions/checkout@v4

0 commit comments

Comments
 (0)