Skip to content

Commit

Permalink
fix: use regex versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Aug 7, 2024
1 parent c8a59ad commit d81881d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"matchDatasources": ["github-releases"],
"extractVersion": "^OTP-(?<version>.+)$"
},
{
"matchDepNames": ["erlang"],
"matchDatasources": ["docker"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)$"
},
{
"description": "Enable minor updates on renovate rebuild trigger file",
"matchFiles": ["renovate.Dockerfile"],
Expand Down
2 changes: 1 addition & 1 deletion builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"image": "erlang",
"depName": "erlang",
"datasource": "docker",
"versioning": "docker",
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)$",
"startVersion": "22.3.4.27",
"ignoredVersions": [
"23.1.0.0",
Expand Down
3 changes: 3 additions & 0 deletions renovate.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ ENV ERLANG_VERSION=25.3.2.6

# renovate: datasource=docker depName=erlang
ENV ERLANG_VERSION=26.1.2.0

# renovate: datasource=docker depName=erlang
ENV ERLANG_VERSION=27.0.0.0

0 comments on commit d81881d

Please sign in to comment.