Compare commits

..

1 Commits

Author SHA1 Message Date
ff436caccc chore(deps): update node.js to v20.19.2
All checks were successful
continuous-integration/drone/pr Build is passing
2025-05-31 07:36:36 +00:00
2 changed files with 4 additions and 4 deletions

View File

@ -17,12 +17,12 @@ steps:
- name: reuse
image: fsfe/reuse:5.0.2-debian@sha256:7928d25ed14a1bc22758d917ebc6aecbb8bcd1a4da7aa748d7179c9011bbfb0b
- name: lint
image: node:20.19.2-alpine@sha256:9c0c98cabb4d6a6138fcf910cfbc1db8cd454a0071d5d63f1aee6c915e61c306
image: node:20.19.2-alpine@sha256:d3507a213936fe4ef54760a186e113db5188472d9efdf491686bd94580a1c1e8
commands:
- npm ci
- npm run lint -- --no-fix
- name: audit
image: node:20.19.2-alpine@sha256:9c0c98cabb4d6a6138fcf910cfbc1db8cd454a0071d5d63f1aee6c915e61c306
image: node:20.19.2-alpine@sha256:d3507a213936fe4ef54760a186e113db5188472d9efdf491686bd94580a1c1e8
commands:
- npm install -g better-npm-audit
- better-npm-audit audit --production --level=moderate
@ -104,7 +104,7 @@ steps:
- name: reuse
image: fsfe/reuse:5.0.2-debian@sha256:7928d25ed14a1bc22758d917ebc6aecbb8bcd1a4da7aa748d7179c9011bbfb0b
- name: lint
image: node:20.19.2-alpine@sha256:9c0c98cabb4d6a6138fcf910cfbc1db8cd454a0071d5d63f1aee6c915e61c306
image: node:20.19.2-alpine@sha256:d3507a213936fe4ef54760a186e113db5188472d9efdf491686bd94580a1c1e8
commands:
- npm ci
- npm run lint -- --no-fix

View File

@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later
FROM node:20.19.2-alpine@sha256:9c0c98cabb4d6a6138fcf910cfbc1db8cd454a0071d5d63f1aee6c915e61c306 as builder
FROM node:20.19.2-alpine@sha256:d3507a213936fe4ef54760a186e113db5188472d9efdf491686bd94580a1c1e8 as builder
COPY package.json package-lock.json ./
RUN npm install