Skip to content

Commit 934f2b3

Browse files
authored
Move to a supported Node LTS (#416)
Node 18 (LTS/Hydrogen) went EOL in October 2023 and loses its security support in April 2025. Node 22 was promoted to an LTS release in October 2024, and we should probably move over.
1 parent 582fe96 commit 934f2b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [16.x, 18.x]
17+
node-version: [18.x, 20.x, 22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install the dependencies
5050
run: |
5151
export DEBIAN_FRONTEND=noninteractive
52-
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
52+
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
5353
sudo apt-get update -y
5454
sudo apt-get install -y --no-install-recommends software-properties-common
5555
sudo add-apt-repository -y ppa:vala-team/daily

0 commit comments

Comments
 (0)