From 88b284b363e1100740cdf89cf99077fcd223c293 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Fri, 23 Apr 2021 22:43:37 +0800 Subject: [PATCH] CI: use Node 16 --- .github/workflows/build.yml | 2 +- .github/workflows/check.yml | 2 +- .github/workflows/distribute-debian.yml | 2 +- .github/workflows/publish-rolling.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test-backend.yml | 4 ++-- .github/workflows/test-frontend.yml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e42e9a53..5c957cff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node: [14, 15] + node: [14, 16] fail-fast: false steps: diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 72aaa02d..6bea1245 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - node: [15] + node: [16] check: [check-source-formatting, check-types, lint] steps: diff --git a/.github/workflows/distribute-debian.yml b/.github/workflows/distribute-debian.yml index 8053d534..57e74e7d 100644 --- a/.github/workflows/distribute-debian.yml +++ b/.github/workflows/distribute-debian.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node: [15] + node: [16] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/publish-rolling.yml b/.github/workflows/publish-rolling.yml index 26598879..9c1f3d5d 100644 --- a/.github/workflows/publish-rolling.yml +++ b/.github/workflows/publish-rolling.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - node: [15] + node: [16] steps: - uses: actions/checkout@v2 @@ -167,7 +167,7 @@ jobs: strategy: matrix: - node: [15] + node: [16] steps: - name: Use Node.js ${{ matrix.node }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c65aa5f1..a1ee91ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - node: [15] + node: [16] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml index 062afd73..403990e2 100644 --- a/.github/workflows/test-backend.yml +++ b/.github/workflows/test-backend.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node: [14, 15] + node: [14, 16] fail-fast: false steps: @@ -38,7 +38,7 @@ jobs: - run: npm test || npm test || npm test - uses: codecov/codecov-action@v1 - if: matrix.node == 15 + if: matrix.node == 16 - run: | sudo apt-get remove --purge -y rtorrent diff --git a/.github/workflows/test-frontend.yml b/.github/workflows/test-frontend.yml index 093924ca..2bf32320 100644 --- a/.github/workflows/test-frontend.yml +++ b/.github/workflows/test-frontend.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 15 + - name: Use Node.js 16 uses: actions/setup-node@v1 with: - node-version: 15 + node-version: 16 - run: sudo apt-get install -y rtorrent