From 8202475917c93f1995e87c10a327027603df745f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:34:27 +0000 Subject: [PATCH] chore(deps): update ci-actions --- .github/workflows/docker-staging.yml | 4 ++-- .github/workflows/docker.yml | 4 ++-- client/Dockerfile | 2 +- server/Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-staging.yml b/.github/workflows/docker-staging.yml index 7ecfb7e16..9d9d7e96b 100644 --- a/.github/workflows/docker-staging.yml +++ b/.github/workflows/docker-staging.yml @@ -27,7 +27,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GH_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: client push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }} @@ -78,7 +78,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GH_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ${{ matrix.component }} push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 077b18c2a..fd0bd0590 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GH_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: client push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }} @@ -78,7 +78,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GH_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ${{ matrix.component }} push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }} diff --git a/client/Dockerfile b/client/Dockerfile index e6b1f750f..d98ec1638 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,5 +1,5 @@ # Grab the latest Node base image -FROM node:21.7.3-alpine as builder +FROM node:22.12.0-alpine as builder RUN npm i -g pnpm # Set the current working directory inside the container diff --git a/server/Dockerfile b/server/Dockerfile index 621bf406a..787591db5 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,5 +1,5 @@ # Dependency versions should be pinned -FROM node:21.7.3-alpine as builder +FROM node:22.12.0-alpine as builder RUN npm i -g pnpm RUN pnpm install @nestjs/cli WORKDIR /server @@ -12,7 +12,7 @@ RUN pnpm i --no-frozen-lockfile COPY . . RUN pnpm run build -FROM node:21.7.3-alpine +FROM node:22.12.0-alpine WORKDIR /server RUN npm i -g pnpm