From 09b128b79e896d86a84f6eb5e8ffbf5efda6086d Mon Sep 17 00:00:00 2001 From: James Sumners Date: Thu, 16 Jul 2020 19:24:50 -0400 Subject: [PATCH] Update main CI Trying to resolve https://github.com/coverallsapp/github-action/issues/26 Also a couple other updates. --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c9468cb..e9cae6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: name: Lint Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - uses: actions/setup-node@v1 - name: Install Packages run: npm install @@ -29,9 +29,10 @@ jobs: - 10.13.0 - 10.x - 12.x + - 14.x runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} @@ -40,12 +41,12 @@ jobs: - name: Run Tests run: npm run test:ci - name: Coveralls Parallel - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v1.1.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel: true - name: Coveralls Finished - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v1.1.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true