Skip to content

Commit f000cd6

Browse files
authored
feat: use github actions custom version manager (#28)
We've found this useful in many repositories to fix certain versions of tools but also get automatic updates. (such as for `uv` where we specify a specific version for the action to use (which is independent of the action itself). Example usage in one of our private repositories. ```yaml env: # renovate: datasource=github-tags depName=uv lookupName=astral-sh/uv UV_VERSION: 0.6.16 ``` Rather than add this to each repo, it'd be nice to have it already configured like we do for the same syntax in dockerfiles
1 parent 9d6c2de commit f000cd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

default.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
":separateMajorReleases",
99
":separateMultipleMajorReleases",
1010
"preview:dockerVersions",
11-
"customManagers:dockerfileVersions"
11+
"customManagers:dockerfileVersions",
12+
"customManagers:githubActionsVersions"
1213
],
1314
"internalChecksFilter": "strict",
1415
"prConcurrentLimit": 1,

0 commit comments

Comments
 (0)