We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab156e2 commit 0478938Copy full SHA for 0478938
.github/workflows/docker.yml
@@ -64,7 +64,7 @@ jobs:
64
repository: csesoc/deployment
65
token: ${{ secrets.GH_TOKEN }}
66
- name: Install yq - portable yaml processor
67
- uses: mikefarah/yq@v4.27.5
+ uses: mikefarah/yq@v4.44.2
68
- name: Determine file to update
69
id: get_manifest
70
env:
Dockerfile
@@ -1,5 +1,5 @@
1
# Build layer template for an eventual TS migration
2
-FROM node:20.13.1-slim as builder
+FROM node:20.15.0-slim as builder
3
ENV NODE_ENV=production
4
5
# Set working directory
@@ -9,7 +9,7 @@ WORKDIR /app
9
COPY package.json package-lock.json ./
10
RUN npm ci --omit=dev
11
12
-FROM node:20.13.1-slim
+FROM node:20.15.0-slim
13
14
15
0 commit comments