Skip to content

Commit

Permalink
update nodejs version in guides examples
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jan 13, 2025
1 parent deada82 commit 527b6ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/pages/guides/hosting/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions src/pages/guides/hosting/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 527b6ad

Please sign in to comment.