From 06081713f2aa79f96899c6c53c3a6c6db5ff455c Mon Sep 17 00:00:00 2001 From: Ben Wilson Date: Mon, 22 Apr 2024 11:37:33 +0100 Subject: [PATCH] update electron, node and os versions on gh actions --- .github/workflows/test-electron.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-electron.yml b/.github/workflows/test-electron.yml index a58df4aef..7f5efe0b2 100644 --- a/.github/workflows/test-electron.yml +++ b/.github/workflows/test-electron.yml @@ -8,13 +8,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - electron: [ '^28.0.0', '^29.0.0', '^30.0.0' ] - node-version: [18, 20] - os: [ ubuntu-22.04, windows-2019 ] + electron: [ '^20.0.0', '^22.0.0', '^24.0.0', '^28.0.0', '^30.0.0' ] + node-version: [18] + os: [ ubuntu-latest, windows-latest ] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: (Act) install build tools and dependencies @@ -29,7 +29,7 @@ jobs: if: ${{ !env.ACT }} run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: npm-cache if: ${{ !env.ACT }} with: @@ -66,7 +66,7 @@ jobs: START_LOCAL_NPM: 1 VERBOSE: 1 ELECTRON_VERSION: ${{ matrix.electron }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: failure() with: name: cucumber-failures