Skip to content

Commit

Permalink
chore: node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
apalchys committed Nov 19, 2023
1 parent 994bd74 commit 0e959ae
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
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
2 changes: 1 addition & 1 deletion server/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 server/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 @@ -14,7 +14,7 @@ COPY server/lambda server/
COPY server/dist server/

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

ENV NODE_ENV production
ENV TZ utc
Expand Down

0 comments on commit 0e959ae

Please sign in to comment.