From e71eea7aee74dcb416fe301d2ed7afcdde0c252a Mon Sep 17 00:00:00 2001 From: Tyler Ang-Wanek Date: Tue, 28 Jul 2020 10:54:29 -0700 Subject: [PATCH] Upgrade build environments MacOS -> 10.15 Retire Node 8 Build on Node 14 --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e15ae9d4b..2f2f782a3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,8 +14,8 @@ jobs: name: "*nix Tests" strategy: matrix: - node: [8, 10, 12] - os: [ubuntu-16.04, macOS-10.14] + node: [10, 12, 14] + os: [ubuntu-16.04, macOS-10.15] runs-on: ${{ matrix.os }} steps: - name: Setup Environment @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@master - - name: Use Node.js 8.x + - name: Use Node.js uses: actions/setup-node@master with: node-version: ${{ matrix.node }} @@ -72,7 +72,7 @@ jobs: name: Windows Tests strategy: matrix: - node: [8, 10, 12] + node: [10, 12, 14] arch: [x86, x64] runs-on: windows-2016 steps: @@ -86,7 +86,7 @@ jobs: - uses: actions/checkout@master - - name: Use Node.js 8.x + - name: Use Node.js uses: implausible/setup-node@feature/expose-architecture-override with: node-version: ${{ matrix.node }}