Skip to content

Commit

Permalink
use node 18 and latest actions (#206)
Browse files Browse the repository at this point in the history
Co-authored-by: Sawyer Burnett <[email protected]>
  • Loading branch information
Burnett2k and Sawyer Burnett authored Mar 20, 2024
1 parent f0f5529 commit 48e1e8b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
Expand All @@ -15,7 +15,7 @@ runs:
run: yarn install --frozen-lockfile

- name: Turbo Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- uses: ./.github/actions/build-test
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- uses: ./.github/actions/build-test

Expand All @@ -27,7 +27,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v18
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Envy is a monorepo managed by [Yarn workspaces](https://classic.yarnpkg.com/lang

### Requirements

- [Node.js](https://nodejs.org/) 16 or higher.
- [Node.js](https://nodejs.org/) 18 or higher.
- [yarn](https://yarn.io/) 1.2 or higher.

### Setup
Expand Down

0 comments on commit 48e1e8b

Please sign in to comment.