-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Change Renovate configuration and change project files for new…
… Renovate
- Loading branch information
1 parent
7fd1750
commit a1e0fa2
Showing
5 changed files
with
77 additions
and
12 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
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,3 +1,6 @@ | ||
FROM squidfunk/mkdocs-material:9.5.15 | ||
|
||
RUN pip install mkdocs-awesome-pages-plugin==2.8.0 | ||
# renovate: datasource=pypi depName=mkdocs-awesome-pages-plugin | ||
ENV MKDOCS_AWESOME_PAGES_PLUGIN_VERSION="2.8.0" | ||
|
||
RUN pip install mkdocs-awesome-pages-plugin==${MKDOCS_AWESOME_PAGES_PLUGIN_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,4 +1,48 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
":rebaseStalePrs", | ||
":semanticCommits", | ||
":semanticCommitScope(deps)" | ||
], | ||
"configMigration": true, | ||
"labels": ["renovate"], | ||
"pre-commit": { | ||
"enabled": true | ||
}, | ||
"vulnerabilityAlerts": { | ||
"enabled": true, | ||
"labels": ["vulnerability-alert"] | ||
}, | ||
"packageRules": [ | ||
{ | ||
"groupName": "mkdocs", | ||
"groupSlug": "mkdocs", | ||
"matchPackageNames": ["mkdocs-material", "squidfunk/mkdocs-material"] | ||
}, | ||
{ | ||
"groupName": "golangci/golangci-lint", | ||
"groupSlug": "golangci_golangci_lint", | ||
"matchPackageNames": ["golangci/golangci-lint"] | ||
} | ||
], | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["^Makefile$", "^.github/workflows/.*\\.yml"], | ||
"matchStrings": [ | ||
"#\\s*renovate:\\s*datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*?_VERSION\\s*[:=]+\\s*\"(?<currentValue>.*)\"\\s" | ||
], | ||
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}" | ||
}, | ||
{ | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"go install (?<depName>[^@]+?)@(?<currentValue>[0-9.-a-zA-Z]+)" | ||
], | ||
"datasourceTemplate": "go" | ||
} | ||
], | ||
"ignoreDeps": ["github.com/aws/aws-sdk-go"] | ||
} |