Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* update npm dependencies
  * cross-spawn
  * express
  * socket.io
  * engine.io
  * theia
  * vite
  * webpack
* update maven dependencies
* install libsecret-1-dev in workflows that need it

Contributed on behalf of STMicroelectronics
  • Loading branch information
jfaltermeier committed Dec 13, 2024
1 parent 371145d commit 1dff4fd
Show file tree
Hide file tree
Showing 7 changed files with 867 additions and 689 deletions.
1 change: 1 addition & 0 deletions .github/workflows/eclipse-npm-license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- name: Run dash-licenses
shell: bash
run: |
sudo apt-get install libsecret-1-dev
cd node
npm ci
npm run license:check
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/reusable-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
node-version: 20

- name: Install dependencies
run: npm ci
run: |
sudo apt-get install libsecret-1-dev
npm ci
- name: Build package
run: npm run build -w ${{ inputs.package_workspace }}
Expand Down
12 changes: 6 additions & 6 deletions java/common/maven-conf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<guice.version>7.0.0</guice.version>
<log4j.version>2.23.1</log4j.version>
<log4j.version>2.24.2</log4j.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<surefire-plugin.version>3.4.0</surefire-plugin.version>
<google.artifactregistry-maven-wagon-version>2.2.2</google.artifactregistry-maven-wagon-version>
<junit-jupiter.version>5.11.0</junit-jupiter.version>
<google.artifactregistry-maven-wagon-version>2.2.4</google.artifactregistry-maven-wagon-version>
<junit-jupiter.version>5.11.3</junit-jupiter.version>
<mockito.version>5.14.2</mockito.version>
<org.json.version>20240303</org.json.version>
<picocli.version>4.7.6</picocli.version>
<webhooks.framework.core.version>1.1.4</webhooks.framework.core.version>
<webhooks.framework.core.version>1.1.6</webhooks.framework.core.version>
<slf4j.version>1.7.36</slf4j.version>
<kubernetes-client.version>6.12.1</kubernetes-client.version>
<quarkus.platform.version>3.11.3</quarkus.platform.version>
<kubernetes-client.version>6.13.4</kubernetes-client.version>
<quarkus.platform.version>3.17.4</quarkus.platform.version>
</properties>

<pluginRepositories>
Expand Down
2 changes: 1 addition & 1 deletion java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<!-- Quarkus Extensions -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<!-- Kubernetes -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion java/service/org.eclipse.theia.cloud.service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<!-- Quarkus Extensions -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
290 changes: 142 additions & 148 deletions node/monitor/package-lock.json

Large diffs are not rendered by default.

Loading

0 comments on commit 1dff4fd

Please sign in to comment.