We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a5bcc9 commit 3b5ab5fCopy full SHA for 3b5ab5f
1 file changed
renovate.json5 .github/renovate.json5renovate.json5 renamed to .github/renovate.json5
@@ -7,14 +7,25 @@
7
schedule: ["before 4am on Monday"],
8
semanticCommits: "disabled",
9
separateMajorMinor: false,
10
- enabledManagers: ["pre-commit", "pep621"],
+ enabledManagers: ["pre-commit", "pep621", "github-actions"],
11
"pre-commit": {
12
enabled: true,
13
},
14
lockFileMaintenance: {
15
16
17
packageRules: [
18
+ // Pin GitHub Actions to immutable SHAs.
19
+ {
20
+ matchDepTypes: ["action"],
21
+ pinDigests: true,
22
+ },
23
+ // Annotate GitHub Actions SHAs with a SemVer version.
24
25
+ extends: ["helpers:pinGitHubActionDigests"],
26
+ extractVersion: "^(?<version>v?\\d+\\.\\d+\\.\\d+)$",
27
+ versioning: "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$",
28
29
{
30
groupName: "prek dependencies",
31
matchManagers: ["pre-commit"],
0 commit comments