Skip to content

Commit

Permalink
Increase node/npm version + use npm ci in mvn scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-wunderlich committed Mar 19, 2024
1 parent 833dbed commit f5f79c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/approval/process-forms/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:10.15 as installer

WORKDIR /opt/build
COPY package.json ./
RUN npm install
RUN npm ci


FROM node:10.15 as builder
Expand Down
2 changes: 1 addition & 1 deletion components/approval/process-forms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
</goals>
<phase>initialize</phase>
<configuration>
<arguments>install --no-optional</arguments>
<arguments>ci --no-optional --no-audit</arguments>
</configuration>
</execution>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion components/tasklist-angular/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:10.15 as installer

WORKDIR /opt/build
COPY package.json ./
RUN npm install
RUN npm ci


FROM node:10.15 as builder
Expand Down
2 changes: 1 addition & 1 deletion components/tasklist-angular/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
</goals>
<phase>initialize</phase>
<configuration>
<arguments>install --no-optional</arguments>
<arguments>ci --no-optional --no-audit</arguments>
</configuration>
</execution>
<execution>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<maven.deploy.skip>true</maven.deploy.skip>

<version.java>${java.version}</version.java>
<npm.version>9.5.1</npm.version>
<node.version>v18.16.0</node.version>
<npm.version>10.2.4</npm.version>
<node.version>v18.19.1</node.version>

<!--
<camunda-ee>false</camunda-ee>
Expand Down

0 comments on commit f5f79c1

Please sign in to comment.