From 3edb9fc0adc9155a6494aa65689a478b1430f29d Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Fri, 22 Sep 2023 13:38:41 +0200 Subject: [PATCH] Bump GitHub Actions and Node versions (#30) --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5b90e9..13b62e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,17 +13,17 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: ['12.x', '14.x', '15.x'] + node-version: ['16', '18'] include: - os: macos-latest - node-version: 15.x + node-version: 18 - os: windows-latest - node-version: 15.x + node-version: 18 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Node ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies