renovate can now update node and npm

This commit is contained in:
Athou
2024-07-02 09:11:07 +02:00
parent bb901564e3
commit bc28d4de27
2 changed files with 12 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -10,6 +11,13 @@
<artifactId>commafeed-client</artifactId>
<name>CommaFeed Client</name>
<properties>
<!-- renovate: datasource=node-version depName=node -->
<node.version>v20.10.0</node.version>
<!-- renovate: datasource=npm depName=npm -->
<npm.version>10.2.5</npm.version>
</properties>
<build>
<plugins>
<plugin>
@@ -25,8 +33,8 @@
</goals>
<phase>compile</phase>
<configuration>
<nodeVersion>v20.10.0</nodeVersion>
<npmVersion>10.2.5</npmVersion>
<nodeVersion>${node.version}</nodeVersion>
<npmVersion>${npm.version}</npmVersion>
</configuration>
</execution>
<execution>

View File

@@ -2,6 +2,7 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"customManagers:mavenPropertyVersions",
"customManagers:biomeVersions",
":automergePatch",
":automergeBranch",