From e9bce51b09d8a48fd66808f6d5382074c9584c30 Mon Sep 17 00:00:00 2001 From: vimux Date: Fri, 17 Feb 2023 11:43:03 -0500 Subject: [PATCH] CI: upgrade checkout and setup-node actions * actions/checkout@v2 -> actions/checkout@v3 * actions/setup-node@v1 -> actions/setup-node@v3 --- .github/workflows/ci-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index dfc1e494..c8ae7d94 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -19,8 +19,8 @@ jobs: - '14.x' steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} @@ -47,7 +47,7 @@ jobs: fail-fast: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # https://github.com/peaceiris/actions-hugo (community action) - name: Run Hugo ${{ matrix.hugo }}