feat(asdf): Support pulumi plugin (#20852)

This commit is contained in:
Liora Milbaum 2023-03-11 11:23:18 +02:00 committed by GitHub
parent b475231176
commit b69fcda426
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View file

@ -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',

View file

@ -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: {