mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
feat(asdf): Support pulumi plugin (#20852)
This commit is contained in:
parent
b475231176
commit
b69fcda426
2 changed files with 16 additions and 0 deletions
|
@ -77,6 +77,7 @@ ocaml 4.14.0
|
|||
perl 5.37.5
|
||||
php 8.1.12
|
||||
pnpm 7.26.2
|
||||
pulumi 3.57.1
|
||||
python 3.11.0
|
||||
ruby 3.1.2
|
||||
rust 1.64.0
|
||||
|
@ -316,6 +317,13 @@ dummy 1.2.3
|
|||
depName: 'pnpm',
|
||||
versioning: 'semver',
|
||||
},
|
||||
{
|
||||
currentValue: '3.57.1',
|
||||
datasource: 'github-releases',
|
||||
packageName: 'pulumi/pulumi',
|
||||
depName: 'pulumi',
|
||||
versioning: '^v(?<version>\\S+)',
|
||||
},
|
||||
{
|
||||
currentValue: '3.11.0',
|
||||
datasource: 'github-tags',
|
||||
|
|
|
@ -300,6 +300,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
|
|||
versioning: semverVersioning.id,
|
||||
},
|
||||
},
|
||||
pulumi: {
|
||||
asdfPluginUrl: 'https://github.com/canha/asdf-pulumi.git',
|
||||
config: {
|
||||
datasource: GithubReleasesDatasource.id,
|
||||
packageName: 'pulumi/pulumi',
|
||||
versioning: '^v(?<version>\\S+)',
|
||||
},
|
||||
},
|
||||
python: {
|
||||
asdfPluginUrl: 'https://github.com/danhper/asdf-python',
|
||||
config: {
|
||||
|
|
Loading…
Reference in a new issue