From: Steve Myers Date: Mon, 21 Sep 2026 23:33:39 +0000 (-0500) Subject: ci: update github actions X-Git-Url: http://internal-gitweb-vhost/error/script/example_cli/struct.Slice.html?a=commitdiff_plain;ds=sidebyside;p=bitcoindevkit.org ci: update github actions Required to update to Node.js 24. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb8f0d1204..79a4796e84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,10 @@ jobs: steps: # Checkout and setup - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 # Install uv - name: Install - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@bec219d24cd3e171d82865faccec33120bb574f4 # v10.1.0 # Sync uv - name: Sync run: uv sync @@ -31,7 +31,7 @@ jobs: # Deploy, limited to the master branch - name: Deploy if: success() && github.ref == 'refs/heads/master' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0 with: publish_dir: ./site github_token: ${{ secrets.GITHUB_TOKEN }}