Skip to content

Commit

Permalink
chore(config): migrate renovate config (#3774)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

The Renovate config in this repository needs migrating. Typically this
is because one or more configuration options you are using have been
renamed.

You don't need to merge this PR right away, because Renovate will
continue to migrate these fields internally each time it runs. But later
some of these fields may be fully deprecated and the migrations removed.
So it's a good idea to merge this migration PR soon.





🔕 **Ignore**: Close this PR and you won't be reminded about config
migration again, but one day your current config may no longer be valid.

❓ Got questions? Does something look wrong to you? Please don't hesitate
to [request help
here](https://github.com/renovatebot/renovate/discussions).


---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/slsa-framework/slsa-github-generator).
  • Loading branch information
renovate-bot committed Aug 14, 2024
1 parent 5ed7dda commit 3bcecb4
Showing 1 changed file with 70 additions and 22 deletions.
92 changes: 70 additions & 22 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,99 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices", "schedule:monthly", ":gitSignOff"],
"extends": [
"config:best-practices",
"schedule:monthly",
":gitSignOff"
],
"vulnerabilityAlerts": {
"schedule": "* 0-4 * * *"
},
"configWarningReuseIssue": false,
"postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"packageRules": [
{
"matchManagers": ["github-actions"],
"excludePackageNames": ["slsa-framework/slsa-github-generator"],
"matchManagers": [
"github-actions"
],
"groupName": "github-actions",
"pinDigests": true
"pinDigests": true,
"matchPackageNames": [
"!slsa-framework/slsa-github-generator"
]
},
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["slsa-framework/slsa-github-generator"],
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"slsa-framework/slsa-github-generator"
],
"groupName": "github-actions",
"pinDigests": false
},
{
"matchManagers": ["dockerfile"],
"matchPackageNames": ["golang"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"dockerfile"
],
"matchPackageNames": [
"golang"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "golang"
},
{
"matchManagers": ["gomod"],
"matchPackageNames": ["go"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"go"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "golang"
},
{
"matchManagers": ["gomod"],
"excludePackageNames": ["go", "github.com/in-toto/in-toto-golang"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "go"
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "go",
"matchPackageNames": [
"!go",
"!github.com/in-toto/in-toto-golang"
]
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"npm"
],
"matchDepTypes": [
"dependencies"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "npm"
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchManagers": [
"npm"
],
"matchDepTypes": [
"devDependencies"
],
"groupName": "npm dev"
}
]
Expand Down

0 comments on commit 3bcecb4

Please sign in to comment.