5c: the build, the freeze audit and the release pipeline
CI / gate (push) Successful in 11s
CI / publish (push) Has been skipped

This commit is contained in:
2026-09-03 20:25:41 +02:00
parent 839e48d5dc
commit d9056973a1
25 changed files with 298 additions and 79 deletions
+25 -8
View File
@@ -6,8 +6,8 @@
"customType": "regex",
"datasourceTemplate": "docker",
"depNameTemplate": "denoland/deno",
"description": "Pin the Deno image ci.sh runs",
"managerFilePatterns": ["ci.sh"],
"description": "Pin the Deno image the gate runs",
"managerFilePatterns": ["docker-images.sh"],
"matchStrings": ["denoland/deno:(?<currentValue>[0-9][^\\s\"']*)"],
"versioningTemplate": "docker"
},
@@ -15,17 +15,27 @@
"customType": "regex",
"datasourceTemplate": "docker",
"depNameTemplate": "node",
"description": "Pin the node image ci.sh runs",
"managerFilePatterns": ["ci.sh"],
"matchStrings": ["node:(?<currentValue>[0-9][^\\s\"']*)"],
"description": "Pin the node image the gate runs",
"managerFilePatterns": ["docker-images.sh"],
"matchStrings": ["node_image=node:(?<currentValue>[0-9][^\\s\"']*)"],
"versioningTemplate": "docker"
},
{
"customType": "regex",
"datasourceTemplate": "docker",
"depNameTemplate": "node-floor",
"description": "Pin the node image proving engines.node, held to that major",
"managerFilePatterns": ["docker-images.sh"],
"matchStrings": ["floor_image=node:(?<currentValue>[0-9][^\\s\"']*)"],
"packageNameTemplate": "node",
"versioningTemplate": "docker"
},
{
"customType": "regex",
"datasourceTemplate": "docker",
"depNameTemplate": "oven/bun",
"description": "Pin the Bun image ci.sh runs",
"managerFilePatterns": ["ci.sh"],
"description": "Pin the Bun image the gate runs",
"managerFilePatterns": ["docker-images.sh"],
"matchStrings": ["oven/bun:(?<currentValue>[0-9][^\\s\"']*)"],
"versioningTemplate": "docker"
},
@@ -39,5 +49,12 @@
"versioningTemplate": "docker"
}
],
"extends": ["config:recommended"]
"extends": ["config:recommended"],
"packageRules": [
{
"allowedVersions": "<19",
"description": "engines.node states >=18, so the image proving it stays on 18",
"matchDepNames": ["node-floor"]
}
]
}