File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2727 username : ${{ github.actor }}
2828 password : ${{ secrets.GH_TOKEN }}
2929 - name : Build and push Docker image
30- uses : docker/build-push-action@v5
30+ uses : docker/build-push-action@v6
3131 with :
3232 context : client
3333 push : ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }}
7878 username : ${{ github.actor }}
7979 password : ${{ secrets.GH_TOKEN }}
8080 - name : Build and push Docker image
81- uses : docker/build-push-action@v5
81+ uses : docker/build-push-action@v6
8282 with :
8383 context : ${{ matrix.component }}
8484 push : ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }}
Original file line number Diff line number Diff line change 2727 username : ${{ github.actor }}
2828 password : ${{ secrets.GH_TOKEN }}
2929 - name : Build and push Docker image
30- uses : docker/build-push-action@v5
30+ uses : docker/build-push-action@v6
3131 with :
3232 context : client
3333 push : ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }}
7878 username : ${{ github.actor }}
7979 password : ${{ secrets.GH_TOKEN }}
8080 - name : Build and push Docker image
81- uses : docker/build-push-action@v5
81+ uses : docker/build-push-action@v6
8282 with :
8383 context : ${{ matrix.component }}
8484 push : ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }}
Original file line number Diff line number Diff line change 11# Grab the latest Node base image
2- FROM node:21.7.3 -alpine as builder
2+ FROM node:22.14.0 -alpine as builder
33RUN npm i -g pnpm
44
55# Set the current working directory inside the container
Original file line number Diff line number Diff line change 11# Dependency versions should be pinned
2- FROM node:21.7.3 -alpine as builder
2+ FROM node:22.14.0 -alpine as builder
33RUN npm i -g pnpm
44RUN pnpm install @nestjs/cli
55WORKDIR /server
@@ -12,7 +12,7 @@ RUN pnpm i --no-frozen-lockfile
1212COPY . .
1313RUN pnpm run build
1414
15- FROM node:21.7.3 -alpine
15+ FROM node:22.14.0 -alpine
1616WORKDIR /server
1717RUN npm i -g pnpm
1818
You can’t perform that action at this time.
0 commit comments