Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update nodejs to 20.15.1 #18

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.12"
node-version: "20.15.1"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.12"
node-version: "20.15.1"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.12"
node-version: "20.15.1"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.12"
node-version: "20.15.1"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.12.2
v20.15.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:20.12.2-alpine3.18 AS base
FROM node:20.15.1-alpine3.20 AS base

RUN npm install -g --ignore-scripts pnpm@9.0.6
RUN npm install -g --ignore-scripts pnpm@9.5.0

# ---

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docker run \
pkarolyi/garden-snail
```

You can also build and run the application yourself, you will need NodeJS `20.12.2` and pnpm `9.0.6`:
You can also build and run the application yourself, you will need NodeJS `20.15.1` and pnpm `9.5.0`:

```sh
pnpm install
Expand Down
4 changes: 2 additions & 2 deletions integration/v1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:20.12.2-alpine3.18
FROM node:20.15.1-alpine3.20

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"

RUN npm install -g --ignore-scripts pnpm@9.0.6
RUN npm install -g --ignore-scripts pnpm@9.5.0

COPY ./turbo-test-project ./turbo-test-project

Expand Down
4 changes: 2 additions & 2 deletions integration/v2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:20.12.2-alpine3.18
FROM node:20.15.1-alpine3.20

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"

RUN npm install -g --ignore-scripts pnpm@9.0.6
RUN npm install -g --ignore-scripts pnpm@9.5.0

COPY ./turbo-test-project ./turbo-test-project

Expand Down
2 changes: 1 addition & 1 deletion integration/v2/turbo-test-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"eslint": "^8",
"eslint-config-next": "14.2.3"
},
"packageManager": "pnpm@9.0.6"
"packageManager": "pnpm@9.5.0"
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "garden-snail",
"version": "1.1.0",
"version": "1.3.0",
"description": "Turborepo remote cache server",
"author": "Peter Karolyi <[email protected]>",
"private": true,
Expand Down Expand Up @@ -38,7 +38,7 @@
"@nestjs/testing": "10.3.10",
"@swc/cli": "0.4.0",
"@swc/core": "1.6.13",
"@types/node": "20.14.10",
"@types/node": "20.14.11",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
Expand All @@ -56,8 +56,8 @@
"unplugin-swc": "1.5.1",
"vitest": "1.6.0"
},
"packageManager": "pnpm@9.0.6",
"packageManager": "pnpm@9.5.0",
"engines": {
"node": "20.12.2"
"node": "20.15.1"
}
}
Loading