From 138a2a2e6e77984b83d4c27ceebfccb290a18edd Mon Sep 17 00:00:00 2001 From: Maik Marschner Date: Wed, 25 Sep 2024 15:12:49 +0200 Subject: [PATCH] Remove Node.js 19 from CI and add Node.js 22, update actions versions. --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ba1b9e4..9793fcf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,12 +11,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 18, 19, 20 ] + node: [ 18, 20, 22 ] name: Node.js ${{ matrix.node }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - run: npm ci