From 10017f84262e9ee75131ea335b10c8f6b66f793d Mon Sep 17 00:00:00 2001 From: Geoffrey Thomas Date: Fri, 20 Jan 2023 11:40:21 -0500 Subject: [PATCH] Run CI against Node 18 This is the first version that officially supports OpenSSL 3. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1963b6f5..bcf00f82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,10 @@ jobs: - run: sudo apt-get install libkrb5-dev - name: Check out repository code uses: actions/checkout@v2 + - name: Switch to Node 18 + uses: actions/setup-node@v3 + with: + node-version: 18 - run: git config --global user.name "A U Thor" - run: git config --global user.email author@example.com - run: yarn install