fix(devcontainer): devcontainerのバージョンアップ+Renovateでbump出来るように設定を追加 (#16793)
* fix(devcontainer): devcontainerのバージョンアップ+Renovateでbump出来るように設定を追加 * Update renovate.json5 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update renovate.json5 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix matchFileNames * using trixie --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
parent
4c0f215fc5
commit
2f3421645a
|
|
@ -1 +1 @@
|
||||||
FROM mcr.microsoft.com/devcontainers/javascript-node:0-18
|
FROM mcr.microsoft.com/devcontainers/javascript-node:4.0.3-24-trixie
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,18 @@
|
||||||
'.devcontainer/**',
|
'.devcontainer/**',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
// devcontainer (Dockerfile用の設定)
|
||||||
|
groupName: '[devcontainer] Update dependencies',
|
||||||
|
matchFileNames: ['.devcontainer/Dockerfile'],
|
||||||
|
matchDepNames: ['mcr.microsoft.com/devcontainers/javascript-node'],
|
||||||
|
allowedVersions: '/-[0-9]+-trixie$/',
|
||||||
|
|
||||||
|
// major/minor/patch: devcontainer の semver
|
||||||
|
// build: Node メジャー
|
||||||
|
// dist: Debian codename (e.g., bullseye, bookworm)(比較には使わない)
|
||||||
|
versioning: 'regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)-(?<build>\\d+)-(?<dist>.+)$',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
customManagers: [
|
customManagers: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue