From c0aeb5e3a1a87a097c6135060f91efa405c7762c Mon Sep 17 00:00:00 2001 From: Zicklag Date: Thu, 5 Dec 2024 09:28:13 -0600 Subject: [PATCH] ci: update Node version in GitHub actions. --- .github/workflows/lint.yaml | 5 +++++ .github/workflows/typescript-docs.yaml | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 383e5afa..efafb203 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -16,6 +16,11 @@ jobs: with: tool: typos-cli + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' + - uses: pnpm/action-setup@v4 with: version: 9 diff --git a/.github/workflows/typescript-docs.yaml b/.github/workflows/typescript-docs.yaml index 4cd717b6..1ef20f5a 100644 --- a/.github/workflows/typescript-docs.yaml +++ b/.github/workflows/typescript-docs.yaml @@ -33,6 +33,10 @@ jobs: uses: actions/checkout@v4 - name: Setup Pages uses: actions/configure-pages@v5 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' - name: Install pnpm uses: pnpm/action-setup@v4 with: