From f5bf1c2ca672bd01e8023fad4aa893a36d3d831a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 28 Mar 2025 00:17:23 +0000 Subject: [PATCH] chore(deps): pin node.js (#4075) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- Dockerfile | 4 ++-- Dockerfile.local | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2be6b2e0..cc9d2d0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: name: Lint & Test Build if: github.event_name == 'pull_request' runs-on: ubuntu-22.04 - container: node:18.18-alpine + container: node:18.18.2-alpine steps: - name: Checkout uses: actions/checkout@v3 diff --git a/Dockerfile b/Dockerfile index 949bf596..25b06adc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.18-alpine AS BUILD_IMAGE +FROM node:18.18.2-alpine AS BUILD_IMAGE WORKDIR /app @@ -34,7 +34,7 @@ RUN touch config/DOCKER RUN echo "{\"commitTag\": \"${COMMIT_TAG}\"}" > committag.json -FROM node:18.18-alpine +FROM node:18.18.2-alpine WORKDIR /app diff --git a/Dockerfile.local b/Dockerfile.local index 7efa68b5..e27622e0 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -1,4 +1,4 @@ -FROM node:18.18-alpine +FROM node:18.18.2-alpine COPY . /app WORKDIR /app