Skip to content

Commit 5fd1702

Browse files
authored
fix: Update base image dependencies to latest security patches (#22275)
1 parent 362f33d commit 5fd1702

File tree

5 files changed

+129
-80
lines changed

5 files changed

+129
-80
lines changed

.github/scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"cacheable-lookup": "6.1.0",
44
"conventional-changelog": "^4.0.0",
55
"debug": "4.3.4",
6-
"glob": "10.3.10",
6+
"glob": "10.5.0",
77
"p-limit": "3.1.0",
88
"picocolors": "1.0.1",
99
"semver": "7.5.4",

docker/images/n8n-base/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ RUN \
1414
find /usr/share/fonts/truetype/msttcorefonts/ -type l -exec unlink {} \;
1515

1616
# Install essential OS dependencies
17-
RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.22/main" >> /etc/apk/repositories && echo "https://dl-cdn.alpinelinux.org/alpine/v3.22/community" >> /etc/apk/repositories && \
17+
RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.22/main" >> /etc/apk/repositories && \
18+
echo "https://dl-cdn.alpinelinux.org/alpine/v3.22/community" >> /etc/apk/repositories && \
1819
apk update && \
20+
apk upgrade --no-cache && \
1921
apk add --no-cache libxml2 && \
2022
apk add --no-cache \
2123
git \

docker/images/n8n/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ FROM n8nio/base:${NODE_VERSION} AS system-deps
1111
# ==============================================================================
1212
# STAGE 2: Application Artifact Processor
1313
# ==============================================================================
14-
FROM alpine:3.22.0 AS app-artifact-processor
14+
FROM alpine:3.22.2 AS app-artifact-processor
1515

1616
COPY ./compiled /app/
1717

1818
# ==============================================================================
1919
# STAGE 3: Task Runner Launcher
2020
# ==============================================================================
21-
FROM alpine:3.22.0 AS launcher-downloader
21+
FROM alpine:3.22.2 AS launcher-downloader
2222
ARG TARGETPLATFORM
2323
ARG LAUNCHER_VERSION
2424

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@
117117
"form-data": "4.0.4",
118118
"tmp": "0.2.4",
119119
"nodemailer": "7.0.10",
120-
"validator": "13.15.20"
120+
"validator": "13.15.20",
121+
"js-yaml": "4.1.1"
121122
},
122123
"patchedDependencies": {
123124

0 commit comments

Comments
 (0)