From aa666eb6e5edd18f1719fa67f47279654023b511 Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Mon, 27 Jan 2025 16:26:04 -0500 Subject: [PATCH] rollback NodeJS LTS docs updates --- src/pages/guides/hosting/aws.md | 8 ++++---- src/pages/guides/hosting/github.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/guides/hosting/aws.md b/src/pages/guides/hosting/aws.md index 89d30966..ebfd9f95 100644 --- a/src/pages/guides/hosting/aws.md +++ b/src/pages/guides/hosting/aws.md @@ -68,14 +68,14 @@ If you're using GitHub, you can use GitHub Actions to automate the pushing of bu jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # match to your version of NodeJS steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 with: - node-version: 22 + node-version: 18.20.2 - name: Install Dependencies run: | diff --git a/src/pages/guides/hosting/github.md b/src/pages/guides/hosting/github.md index 839c38f1..e4cda4cf 100644 --- a/src/pages/guides/hosting/github.md +++ b/src/pages/guides/hosting/github.md @@ -49,14 +49,14 @@ Following the steps [outlined here](https://pages.github.com/), first make sure jobs: build-and-deploy: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # match to your version of NodeJS steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 with: - node-version: 22 + node-version: 18.20.2 # or replace with yarn, pnpm, etc - name: Install Dependencies