From b93593e0fb308b3194d556976f75a3b48e259929 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Tue, 17 Sep 2024 22:18:29 +0800 Subject: [PATCH 1/2] ci: bump `actions/cache` and `actions/setup-node` --- .github/workflows/tester.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 3bef0d5..e25abc1 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache NPM dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-npm-cache @@ -41,7 +41,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache NPM dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-npm-cache From d4a67a03e96c5c179f204024b182ab524e18b9ac Mon Sep 17 00:00:00 2001 From: SukkaW Date: Tue, 17 Sep 2024 22:24:15 +0800 Subject: [PATCH 2/2] ci: makes macos actions exclude Node.js 14 --- .github/workflows/tester.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index e25abc1..16d6c49 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -9,6 +9,10 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: ['14.x', '16.x', '18.x'] + exclude: + # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#excluding-matrix-configurations + - os: macos-latest + node-version: 14.x fail-fast: false steps: - uses: actions/checkout@v2