From b2dcf1e74127d45d8b76e3c6b28323061a66ff59 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 26 Aug 2024 10:35:28 -0500 Subject: [PATCH] ci: update checkout and setup-node to @v4 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3787031f20..d2b3f19884 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: steps: # Checkout and setup - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16 # Install and build @@ -35,8 +35,8 @@ jobs: publish_dir: ./docs/.vuepress/dist github_token: ${{ secrets.GITHUB_TOKEN }} cname: bitcoindevkit.org - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' + user_name: "github-actions[bot]" + user_email: "github-actions[bot]@users.noreply.github.com" # Run linkcheck, propagate linkcheck failure through grep pipe - name: Linkcheck run: set -o pipefail; npm run linkcheck 2>/dev/null | grep "Getting links from\|BROKEN" -- 2.49.0