mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
feat(asdf): Add rebar3 to asdf manager (#29188)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
This commit is contained in:
parent
f59c7f3162
commit
2e6c5636ea
2 changed files with 14 additions and 0 deletions
|
@ -98,6 +98,7 @@ poetry 1.3.2
|
|||
pre-commit 3.3.1
|
||||
pulumi 3.57.1
|
||||
python 3.11.0
|
||||
rebar 3.23.0
|
||||
ruby 3.1.2
|
||||
rust 1.64.0
|
||||
sbt 1.9.7
|
||||
|
@ -484,6 +485,12 @@ dummy 1.2.3
|
|||
depName: 'python',
|
||||
extractVersion: '^v(?<version>\\S+)',
|
||||
},
|
||||
{
|
||||
currentValue: '3.23.0',
|
||||
datasource: 'github-tags',
|
||||
packageName: 'erlang/rebar3',
|
||||
depName: 'rebar',
|
||||
},
|
||||
{
|
||||
currentValue: '3.1.2',
|
||||
datasource: 'ruby-version',
|
||||
|
|
|
@ -500,6 +500,13 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
|
|||
extractVersion: '^v(?<version>\\S+)',
|
||||
},
|
||||
},
|
||||
rebar: {
|
||||
asdfPluginUrl: 'https://github.com/Stratus3D/asdf-rebar.git',
|
||||
config: {
|
||||
datasource: GithubTagsDatasource.id,
|
||||
packageName: 'erlang/rebar3',
|
||||
},
|
||||
},
|
||||
ruby: {
|
||||
asdfPluginUrl: 'https://github.com/asdf-vm/asdf-ruby',
|
||||
config: {
|
||||
|
|
Loading…
Reference in a new issue