From b1db5f9d5f9ed685de3a2774c3d3b838d2dde462 Mon Sep 17 00:00:00 2001 From: Linda_pp Date: Thu, 26 Oct 2023 03:36:38 +0900 Subject: [PATCH] Update action runtime to `node20` (#175) --- .github/workflows/check-dist.yml | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 8339624..bc27b2e 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -17,10 +17,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup Node.js 16.x + - name: Setup Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x cache: npm - name: Install dependencies diff --git a/action.yml b/action.yml index c7f3ed5..e000f77 100644 --- a/action.yml +++ b/action.yml @@ -44,7 +44,7 @@ outputs: cache-hit: description: "A boolean value that indicates an exact match was found." runs: - using: "node16" + using: "node20" main: "dist/restore/index.js" post: "dist/save/index.js" post-if: "success() || env.CACHE_ON_FAILURE == 'true'"