From aa2e60900e4cc1eda092dd8f53dab2b32efeacf5 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 1 Feb 2021 13:01:31 +0100 Subject: [PATCH] CI: Cleanup, checkout v2 (#24) - Remove the fail-fast: tag, it's non-functional since a matrix isn't used anymore - Update to the faster checkout v2 --- .github/workflows/main.yml | 6 ++---- .github/workflows/release.yml | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 486fded..274f9c3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,11 +13,9 @@ jobs: test: name: default runs-on: windows-latest - strategy: - fail-fast: false steps: - name: Check out source code - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Download Internet run: npm install - name: Enable Developer Command Prompt @@ -32,6 +30,6 @@ jobs: runs-on: windows-latest steps: - name: Check out source code - uses: actions/checkout@v1 + uses: actions/checkout@v2 - run: npm install - run: npm audit --audit-level=moderate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 03e739d..e9c853f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,13 +11,11 @@ jobs: test: name: release runs-on: windows-latest - strategy: - fail-fast: false steps: - name: Setup Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1 - name: Check out source code - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Compile and run some C code shell: cmd run: | @@ -28,5 +26,5 @@ jobs: runs-on: windows-latest steps: - name: Check out source code - uses: actions/checkout@v1 + uses: actions/checkout@v2 - run: npm audit --audit-level=moderate