File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3737 id : login-ecr
3838 uses : aws-actions/amazon-ecr-login@v1
3939 with :
40- mask-password : ' true'
40+ mask-password : " true"
4141
4242 # This is a separate action that sets up buildx runner
4343 - name : Setup Docker Buildx
@@ -71,12 +71,12 @@ jobs:
7171 needs : Build
7272 steps :
7373 - name : Git Checkout
74- uses : actions/checkout@v2
74+ uses : actions/checkout@v6
7575 - name : Echo Branch
7676 run : echo running on branch ${GITHUB_REF##*/}
7777 - uses : actions/setup-node@v4
7878 with :
79- node-version : 22
79+ node-version : 25
8080 - name : Deploy to server
8181 uses : appleboy/ssh-action@master
8282 with :
Original file line number Diff line number Diff line change 11# Install dependencies only when needed
2- FROM node:24 -alpine AS deps
2+ FROM node:25 -alpine AS deps
33# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
44RUN apk add --no-cache libc6-compat
55WORKDIR /app
1515
1616
1717# Rebuild the source code only when needed
18- FROM node:24 -alpine AS builder
18+ FROM node:25 -alpine AS builder
1919WORKDIR /app
2020COPY . .
2121
@@ -34,7 +34,7 @@ RUN yarn build
3434# RUN npm run build
3535
3636# Production image, copy all the files and run next
37- FROM node:24 -alpine AS runner
37+ FROM node:25 -alpine AS runner
3838WORKDIR /app
3939
4040ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments