Skip to content

Commit c5c1347

Browse files
⬆️ Update all non-major dependencies (#417)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 0686f45 commit c5c1347

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
type=sha,format=long
8080
# Build and push
8181
- name: Build and push
82-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6
82+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6
8383
with:
8484
context: .
8585
push: ${{ github.event_name != 'pull_request' }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base stage with pnpm setup
2-
FROM node:23.11.0-slim AS base
2+
FROM node:23.11.1-slim AS base
33
ENV PNPM_HOME="/pnpm"
44
ENV PATH="$PNPM_HOME:$PATH"
55
RUN corepack enable
@@ -20,7 +20,7 @@ COPY . .
2020
RUN pnpm run build
2121

2222
# Final stage - combine production dependencies and build output
23-
FROM node:23.11.0-alpine AS runner
23+
FROM node:23.11.1-alpine AS runner
2424
WORKDIR /app
2525
COPY --from=prod-deps --chown=node:node /app/node_modules ./node_modules
2626
COPY --from=build --chown=node:node /app/dist ./dist

0 commit comments

Comments
 (0)