From bafe70664bbe400e296c26650e44cc024cd64155 Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Thu, 17 Mar 2022 17:12:40 +0800 Subject: [PATCH] ci: bump actions to use NodeJS v16 as runtime --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ea0b58..22eefc7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,14 +10,14 @@ jobs: build: # make sure build/ci work properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Make sure the release step uses its own credentials. persist-credentials: false - name: Read .nvmrc run: echo ::set-output name=NVMRC::$(cat .nvmrc) id: nvm - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: cache: npm node-version: ${{ steps.nvm.outputs.NVMRC }} @@ -33,7 +33,7 @@ jobs: test: # make sure the action works on a clean machine without building runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: version: '1.26.2'