Skip to content

Commit cbd5e93

Browse files
chore(deps): update ci-actions (#901)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 52b563d commit cbd5e93

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/docker-staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
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' }}
@@ -78,7 +78,7 @@ jobs:
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' }}

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
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' }}
@@ -78,7 +78,7 @@ jobs:
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' }}

client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
33
RUN npm i -g pnpm
44

55
# Set the current working directory inside the container

server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dependency versions should be pinned
2-
FROM node:21.7.3-alpine as builder
2+
FROM node:22.14.0-alpine as builder
33
RUN npm i -g pnpm
44
RUN pnpm install @nestjs/cli
55
WORKDIR /server
@@ -12,7 +12,7 @@ RUN pnpm i --no-frozen-lockfile
1212
COPY . .
1313
RUN pnpm run build
1414

15-
FROM node:21.7.3-alpine
15+
FROM node:22.14.0-alpine
1616
WORKDIR /server
1717
RUN npm i -g pnpm
1818

0 commit comments

Comments
 (0)