diff --git a/src/pages/guides/hosting/aws.md b/src/pages/guides/hosting/aws.md index ebfd9f95..89d30966 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-20.04 + runs-on: ubuntu-latest # match to your version of NodeJS steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 18.20.2 + node-version: 22 - name: Install Dependencies run: | diff --git a/src/pages/guides/hosting/github.md b/src/pages/guides/hosting/github.md index e4cda4cf..839c38f1 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-20.04 + runs-on: ubuntu-latest # match to your version of NodeJS steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 18.20.2 + node-version: 22 # or replace with yarn, pnpm, etc - name: Install Dependencies