-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable renovate bot for dependency updates. Signed-off-by: Noel Georgi <git@frezbo.dev>
- Loading branch information
Showing
13 changed files
with
122 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
":semanticCommitScopeDisabled", | ||
"schedule:earlyMondays" | ||
], | ||
"regexManagers": [ | ||
{ | ||
"fileMatch": [ | ||
"vars.yaml" | ||
], | ||
"matchStrings": [ | ||
"# renovate: datasource=(?<datasource>.*?)(?:\\s+extractVersion=(?<extractVersion>.+?))?(?:\\s+versioning=(?<versioning>.+?))?\\s+depName=(?<depName>.+?)?\\s(?:\\s+.*_(?:version|VERSION):\\s+(?<currentValue>.*))?(?:\\s.*_(?:ref|REF):\\s+(?<currentDigest>.*))?" | ||
], | ||
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}" | ||
}, | ||
{ | ||
"fileMatch": [ | ||
"Pkgfile" | ||
], | ||
"matchStrings": [ | ||
"(?<depName>ghcr.io\\/siderolabs\\/bldr):(?<currentValue>v.*-frontend)" | ||
], | ||
"datasourceTemplate": "docker", | ||
"versioningTemplate": "semver" | ||
}, | ||
{ | ||
"fileMatch": [ | ||
"Makefile" | ||
], | ||
"matchStrings": [ | ||
"BLDR_RELEASE\\s+\\?=\\s+(?<currentValue>.*)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"depNameTemplate": "siderolabs/bldr" | ||
} | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchDatasources": [ | ||
"docker" | ||
], | ||
"groupName": "container images" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchDatasources": [ | ||
"go", | ||
"golang-version" | ||
], | ||
"groupName": "go packages" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchDatasources": [ | ||
"npm" | ||
], | ||
"groupName": "node packages" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchDatasources": [ | ||
"git-refs", | ||
"git-tags", | ||
"github-tags", | ||
"github-releases" | ||
], | ||
"groupName": "releases" | ||
} | ||
], | ||
"dependencyDashboard": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
# renovate: datasource=github-tags extractVersion=^release-(?<version>.*)$ versioning=loose depName=google/gvisor | ||
GVISOR_VERSION: "20220405.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
# renovate: datasource=github-releases extractVersion=^microcode-(?<version>.*)$ versioning=loose depName=intel/Intel-Linux-Processor-Microcode-Data-Files | ||
INTEL_UCODE_VERSION: "20220809" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# the first part is the driver version and the second the container-toolkit version | ||
VERSION: "{{ .NVIDIA_DRIVER_VERSION_MAJOR }}.{{ .NVIDIA_DRIVER_VERSION_MINOR }}-{{ .NVIDIA_CONTAINER_TOOLKIT_VERSION }}" | ||
VERSION: "{{ .NVIDIA_DRIVER_VERSION }}-{{ .CONTAINER_TOOLKIT_VERSION }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION: "{{ .NVIDIA_FABRICMANAGER_VERSION_MAJOR }}.{{ .NVIDIA_FABRICMANAGER_VERSION_MINOR }}" | ||
VERSION: "{{ .NVIDIA_FABRICMANAGER_VERSION }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# the first part is the driver version and the second the talos version for which the module is built against | ||
VERSION: "{{ .NVIDIA_DRIVER_VERSION_MAJOR }}.{{ .NVIDIA_DRIVER_VERSION_MINOR }}-{{ .BUILD_ARG_TAG }}" | ||
VERSION: "{{ .NVIDIA_DRIVER_VERSION }}-{{ .BUILD_ARG_TAG }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
NVIDIA_DRIVER_VERSION_MAJOR: 515 | ||
NVIDIA_DRIVER_VERSION_MINOR: 65.01 | ||
NVIDIA_FABRICMANAGER_VERSION_MAJOR: 515 | ||
NVIDIA_FABRICMANAGER_VERSION_MINOR: 65.01 | ||
NVIDIA_CONTAINER_TOOLKIT_VERSION: v1.10.0 | ||
# renovate: datasource=github-releases depName=NVIDIA/open-gpu-kernel-modules | ||
NVIDIA_DRIVER_VERSION: 515.65.01 | ||
NVIDIA_FABRICMANAGER_VERSION: 515.65.01 | ||
# renovate: datasource=git-tags depName=https://gitlab.com/nvidia/container-toolkit/container-toolkit.git | ||
CONTAINER_TOOLKIT_VERSION: v1.10.0 | ||
CONTAINER_TOOLKIT_REF: 7cfd3bd5108c512354472c779edb05010f8569b7 | ||
# renovate: datasource=git-tags depName=https://gitlab.com/nvidia/container-toolkit/libnvidia-container.git | ||
LIBNVIDIA_CONTAINER_VERSION: v1.10.0 | ||
LIBNVIDIA_CONTAINER_REF: 395fd41701117121f1fd04ada01e1d7e006a37ae | ||
# renovate: datasource=github-tags extractVersion=^go(?<version>.*)$ versioning=loose depName=golang/go | ||
GOLANG_VERSION: 1.17.13 | ||
# renovate: datasource=git-tags extractVersion=^glibc-(?<version>.*)$ versioning=loose depName=https://sourceware.org/git/glibc.git | ||
GLIBC_VERSION: 2.36 | ||
# renovate: datasource=docker versioning=loose depName=ubuntu | ||
UBUNTU_IMAGE_VERSION: 22.10 | ||
# renovate: datasource=docker versioning=loose depName=debian | ||
DEBIAN_IMAGE_VERSION: 10 |