Skip to content

Commit

Permalink
chore(deps): update ci-actions (major) (#405)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 23, 2023
1 parent dfde38e commit 37421d5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20.5-alpine as builder
FROM node:21.0-alpine as builder
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
RUN yarn install --frozen-lockfile
COPY ./ .

RUN yarn build

FROM node:20.5-alpine as runner
FROM node:21.0-alpine as runner
ENV NODE_ENV production
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
4 changes: 2 additions & 2 deletions backend/dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20.5-alpine as builder
FROM node:21.0-alpine as builder

WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
RUN yarn install --frozen-lockfile
COPY ./ .
RUN yarn build

FROM node:20.5-alpine as runner
FROM node:21.0-alpine as runner
ENV NODE_ENV development
WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
2 changes: 1 addition & 1 deletion backend/test.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.5-alpine
FROM node:21.0-alpine

WORKDIR /app
COPY ["./package.json", "./yarn.lock", "/app/"]
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# source: https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
FROM node:20-alpine AS base
FROM node:21-alpine AS base

# Install dependencies only when needed
FROM base AS deps
Expand Down

0 comments on commit 37421d5

Please sign in to comment.