From 8193ea54199ecb295b46913b410528bd5f59d9a9 Mon Sep 17 00:00:00 2001 From: Lukas Taegert-Atkinson Date: Tue, 6 Sep 2022 07:05:23 +0200 Subject: [PATCH] Adapt workflow to use Node 14 sub-version to work with branch protection --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7e4cfac321a..10eadf6d582 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,7 +58,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['10', '12', '14'] + node: ['10', '12', '14.18.0'] name: Node ${{ matrix.node }} (Linux) steps: - name: Checkout Commit @@ -78,7 +78,7 @@ jobs: runs-on: macos-latest strategy: matrix: - node: ['14', '18'] + node: ['14.18.0', '18'] name: Node ${{ matrix.node }} (macOS) steps: - name: Checkout Commit @@ -98,7 +98,7 @@ jobs: runs-on: windows-latest strategy: matrix: - node: ['10', '14', '18'] + node: ['10', '14.18.0', '18'] name: Node ${{ matrix.node }} (Windows) steps: - name: Checkout Commit