From b6aa8133b182f8fddf99a682ed8b02e57b5813fa Mon Sep 17 00:00:00 2001 From: Zack Schuster Date: Thu, 29 Oct 2020 23:43:28 -0700 Subject: [PATCH] workflows: upgrade actions --- .github/workflows/lint.yml | 10 ++++------ .github/workflows/test.yml | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 23d7dc6..b0e8ad6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,19 +7,17 @@ jobs: strategy: fail-fast: false matrix: - node-version: [^10, ^12, ^14, ^15] + node: [^10, ^12, ^14, ^15] os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: checkout - uses: actions/checkout@v1 - with: - fetch-depth: 0 + uses: actions/checkout@v2 - name: node - uses: actions/setup-node@v1 + uses: actions/setup-node@v2-beta with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - name: install run: yarn install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53a05bd..4131236 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,19 +7,17 @@ jobs: strategy: fail-fast: false matrix: - node-version: [^10, ^12, ^14, ^15] + node: [^10, ^12, ^14, ^15] os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: checkout - uses: actions/checkout@v1 - with: - fetch-depth: 0 + uses: actions/checkout@v2 - name: node - uses: actions/setup-node@v1 + uses: actions/setup-node@v2-beta with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - name: install run: yarn install