From dadc27210f04efb649440dbd752a87899c2d01e0 Mon Sep 17 00:00:00 2001 From: Chris Maltby Date: Fri, 15 Mar 2024 13:11:47 +0000 Subject: [PATCH] Remove docker from github actions --- .github/workflows/main.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2b91b4b8f..56660d927 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,26 +16,26 @@ jobs: matrix: include: - build: mac - node_version: '21.6.2' os: macos-14 - build: mac-intel - node_version: '21.6.2' os: macos-14 # - build: win32 - # node_version: '21.6.2' # os: windows-latest # - build: win64 - # node_version: '21.6.2' # os: windows-latest # - build: linux - # node_version: '21.6.2' # os: ubuntu-latest - container: - image: cimg/node:${{ matrix.node_version }} + # container: + # image: cimg/node:${{ matrix.node_version }} steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: '21.6.2' + + - uses: actions/cache@v4 with: path: | ./node_modules @@ -71,7 +71,7 @@ jobs: if: matrix.build == 'mac' run: | yarn test - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: build-artifacts-${{ matrix.build }} path: |