From 6a84c702d1e488a3e22ea4e4265165f9661fb0fc Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 24 Jan 2024 13:24:05 +0900 Subject: [PATCH] update workflow --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 738ae83..1e1184b 100644 --- a/README.md +++ b/README.md @@ -276,9 +276,11 @@ jobs: main: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: { node-version: lts/*, cache: npm } + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "lts/*" + cache: npm - run: npm ci - run: npm test ```