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: node 20 #2370

Merged
merged 3 commits into from
Nov 20, 2023
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/deploy-bumblebee.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
working-directory: ./tools/bumblebee
steps:
- name: Setup Node.js environment
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-sloths.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'

- name: Checkout
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_bundle_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v3
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Restore npm cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '20'

- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:20-alpine

EXPOSE 8080

Expand Down
4 changes: 2 additions & 2 deletions client/Dockerfile.lambda
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-bullseye-slim as builder
FROM node:20-bullseye-slim as builder

ENV NEXT_RUNTIME nodejs

Expand All @@ -18,7 +18,7 @@ COPY client/dist client/
COPY client/.next client/.next

# Lambda Container
FROM public.ecr.aws/lambda/nodejs:18
FROM public.ecr.aws/lambda/nodejs:20

ENV NODE_ENV production
ENV TZ utc
Expand Down
2 changes: 1 addition & 1 deletion nestjs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:20-alpine

EXPOSE 8080

Expand Down
4 changes: 2 additions & 2 deletions nestjs/Dockerfile.lambda
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-bullseye-slim as builder
FROM node:20-bullseye-slim as builder

WORKDIR /container_out

Expand All @@ -13,7 +13,7 @@ COPY nestjs/lambda nestjs/
COPY nestjs/dist nestjs/

# Lambda Container
FROM public.ecr.aws/lambda/nodejs:18
FROM public.ecr.aws/lambda/nodejs:20

ENV NODE_ENV production
ENV TZ utc
Expand Down
Loading
Loading