Skip to content

Commit 610cc03

Browse files
authored
chore: upgrade Alpine and Deno versions (RocketChat#39837)
1 parent 147fa09 commit 610cc03

File tree

18 files changed

+34
-32
lines changed

18 files changed

+34
-32
lines changed

.github/workflows/ci-deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: ./.github/actions/setup-node
1919
with:
2020
node-version: 22.16.0
21-
deno-version: 1.43.5
21+
deno-version: 2.3.1
2222
cache-modules: true
2323
install: true
2424

.github/workflows/new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: ./.github/actions/setup-node
3636
with:
3737
node-version: 22.16.0
38-
deno-version: 1.43.5
38+
deno-version: 2.3.1
3939
cache-modules: true
4040
install: true
4141
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/pr-update-description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: ./.github/actions/setup-node
2323
with:
2424
node-version: 22.16.0
25-
deno-version: 1.43.5
25+
deno-version: 2.3.1
2626
cache-modules: true
2727
install: true
2828
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: ./.github/actions/setup-node
2626
with:
2727
node-version: 22.16.0
28-
deno-version: 1.43.5
28+
deno-version: 2.3.1
2929
cache-modules: true
3030
install: true
3131
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: ./.github/actions/setup-node
1717
with:
1818
node-version: 22.16.0
19-
deno-version: 1.43.5
19+
deno-version: 2.3.1
2020
cache-modules: true
2121
install: true
2222
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
deno 1.43.5
1+
deno 2.3.1

apps/meteor/.docker/Dockerfile.alpine

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.16.0-alpine3.20 AS builder
1+
FROM node:22.16.0-alpine3.22 AS builder
22

33
ENV LANG=C.UTF-8
44

@@ -11,7 +11,7 @@ ENV NODE_ENV=production
1111
RUN cd /app/bundle/programs/server \
1212
&& npm install --omit=dev
1313

14-
FROM node:22.16.0-alpine3.20
14+
FROM node:22.16.0-alpine3.22
1515

1616
LABEL maintainer="buildmaster@rocket.chat"
1717

@@ -31,7 +31,7 @@ ENV LANG=C.UTF-8
3131
# """
3232
RUN apk add --no-cache shadow deno ttf-dejavu \
3333
# Update OpenSSL
34-
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
34+
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
3535
&& apk upgrade --no-cache openssl \
3636
&& groupmod -n rocketchat nogroup \
3737
&& useradd -u 65533 -r -g rocketchat rocketchat

apps/meteor/ee/server/services/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.16.0-alpine3.21 as build
1+
FROM node:22.16.0-alpine3.22 as build
22

33
WORKDIR /app
44

@@ -28,7 +28,7 @@ RUN yarn install
2828
RUN yarn workspace @rocket.chat/core-typings run build \
2929
&& yarn workspace @rocket.chat/rest-typings run build
3030

31-
FROM node:22.16.0-alpine3.21
31+
FROM node:22.16.0-alpine3.22
3232

3333
ARG SERVICE
3434

@@ -74,7 +74,7 @@ WORKDIR /app/apps/meteor/ee/server/services
7474
RUN apk update && \
7575
apk --no-cache --virtual build-dependencies add g++ python3 make py3-setuptools && \
7676
# Update OpenSSL
77-
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
77+
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
7878
apk upgrade --no-cache openssl && \
7979
yarn workspaces focus --production && \
8080
rm -rf /var/cache/apk/* && \

ee/apps/account-service/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.16.0-alpine3.21 AS builder
1+
FROM node:22.16.0-alpine3.22 AS builder
22

33
ARG SERVICE
44

@@ -88,7 +88,7 @@ WORKDIR /app/ee/apps/${SERVICE}
8888

8989
RUN yarn workspaces focus --production
9090

91-
FROM node:22.16.0-alpine3.21
91+
FROM node:22.16.0-alpine3.22
9292

9393
ARG SERVICE
9494

@@ -98,7 +98,7 @@ ENV NODE_ENV=production \
9898
RUN apk update && \
9999
apk --no-cache --virtual deps add shadow && \
100100
# Update OpenSSL
101-
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
101+
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
102102
apk upgrade --no-cache openssl && \
103103
rm -rf /var/cache/apk/* && \
104104
groupmod -n rocketchat nogroup && \

ee/apps/authorization-service/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.16.0-alpine3.21 AS builder
1+
FROM node:22.16.0-alpine3.22 AS builder
22

33
ARG SERVICE
44

@@ -88,7 +88,7 @@ WORKDIR /app/ee/apps/${SERVICE}
8888

8989
RUN yarn workspaces focus --production
9090

91-
FROM node:22.16.0-alpine3.21
91+
FROM node:22.16.0-alpine3.22
9292

9393
ARG SERVICE
9494

@@ -98,7 +98,7 @@ ENV NODE_ENV=production \
9898
RUN apk update && \
9999
apk --no-cache --virtual deps add shadow && \
100100
# Update OpenSSL
101-
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
101+
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
102102
apk upgrade --no-cache openssl && \
103103
rm -rf /var/cache/apk/* && \
104104
groupmod -n rocketchat nogroup && \

0 commit comments

Comments
 (0)