Skip to content

Commit 33e54fd

Browse files
committed
Drop Node 18, run format on Ubuntu 24.04
1 parent 10e89cf commit 33e54fd

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
lcov --add-tracefile lcov-cpp.info --add-tracefile lcov.info --output-file lcov.info
5353
lcov --remove lcov.info "*/node_modules/*" --output-file lcov.info
5454
55-
- name: "Send to Codacy"
55+
- name: Send to Codacy
5656
uses: codacy/codacy-coverage-reporter-action@v1
5757
with:
5858
coverage-reports: lcov.info
@@ -61,7 +61,7 @@ jobs:
6161
test:
6262
strategy:
6363
matrix:
64-
node-version: [18, 20, 22]
64+
node-version: [20, 22]
6565
os: [ubuntu-22.04, macos-13, macos-14, windows-2019]
6666

6767
name: Test for node-${{ matrix.node-version }} on ${{ matrix.os }}
@@ -88,7 +88,7 @@ jobs:
8888
test-alpine:
8989
strategy:
9090
matrix:
91-
node-version: [18, 20, 22]
91+
node-version: [20, 22]
9292

9393
name: Test for node-${{ matrix.node-version }} on Alpine Linux
9494
runs-on: ubuntu-latest
@@ -114,7 +114,7 @@ jobs:
114114
test-freebsd:
115115
strategy:
116116
matrix:
117-
node-version: [18, 20]
117+
node-version: [20, 22]
118118

119119
name: Test for node-${{ matrix.node-version }} on FreeBSD
120120
runs-on: ubuntu-latest

.github/workflows/clang-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ on:
1313

1414
jobs:
1515
check-format:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@v4
1919

2020
- name: Setup LLVM repository
2121
run: |
2222
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
23-
sudo add-apt-repository -y 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main'
23+
sudo add-apt-repository -y 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main'
2424
2525
- name: Install clang-format
2626
run: sudo apt update -q && sudo apt install -yq clang-format

0 commit comments

Comments
 (0)