From 7bb8379f64f282b2d9fefcbbb05faf892ba2f371 Mon Sep 17 00:00:00 2001 From: Ze Peng Date: Fri, 28 Jun 2024 16:31:16 -0600 Subject: [PATCH] ci: upgrade actions to use node 20 (#209) ## Summary Node 16 is EOL, upgrade action versions to use node 20 ## Release Notes * actions/checkout v3 -> v4: https://github.com/actions/checkout/releases/tag/v4.0.0 * actions/setup-node v3 -> v4: https://github.com/actions/setup-node/releases/tag/v4.0.0 --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 493d38b..93e1e15 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -11,8 +11,8 @@ jobs: name: "Verify" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16 cache: "npm"