Skip to content

Commit

Permalink
chore(deps): update ci-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 25, 2023
1 parent d0e88c1 commit 908abc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
component: [client, server]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v2
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Grab the latest Node base image
FROM node:20.8.1-alpine as builder
FROM node:21.0.0-alpine as builder
RUN npm i -g pnpm

# Set the current working directory inside the container
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dependency versions should be pinned
FROM node:20.8.1-alpine as builder
FROM node:21.0.0-alpine as builder
RUN npm i -g pnpm
WORKDIR /server

Expand All @@ -10,7 +10,7 @@ COPY . .
RUN pnpm run build


FROM node:20.8.1-alpine
FROM node:21.0.0-alpine
RUN npm i -g pnpm
WORKDIR /server

Expand Down

0 comments on commit 908abc5

Please sign in to comment.