Skip to content
Snippets Groups Projects
Unverified Commit b69fcda4 authored by Liora Milbaum's avatar Liora Milbaum Committed by GitHub
Browse files

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

parent b4752311
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,7 @@ ocaml 4.14.0 ...@@ -77,6 +77,7 @@ ocaml 4.14.0
perl 5.37.5 perl 5.37.5
php 8.1.12 php 8.1.12
pnpm 7.26.2 pnpm 7.26.2
pulumi 3.57.1
python 3.11.0 python 3.11.0
ruby 3.1.2 ruby 3.1.2
rust 1.64.0 rust 1.64.0
...@@ -316,6 +317,13 @@ dummy 1.2.3 ...@@ -316,6 +317,13 @@ dummy 1.2.3
depName: 'pnpm', depName: 'pnpm',
versioning: 'semver', versioning: 'semver',
}, },
{
currentValue: '3.57.1',
datasource: 'github-releases',
packageName: 'pulumi/pulumi',
depName: 'pulumi',
versioning: '^v(?<version>\\S+)',
},
{ {
currentValue: '3.11.0', currentValue: '3.11.0',
datasource: 'github-tags', datasource: 'github-tags',
......
...@@ -300,6 +300,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = { ...@@ -300,6 +300,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
versioning: semverVersioning.id, versioning: semverVersioning.id,
}, },
}, },
pulumi: {
asdfPluginUrl: 'https://github.com/canha/asdf-pulumi.git',
config: {
datasource: GithubReleasesDatasource.id,
packageName: 'pulumi/pulumi',
versioning: '^v(?<version>\\S+)',
},
},
python: { python: {
asdfPluginUrl: 'https://github.com/danhper/asdf-python', asdfPluginUrl: 'https://github.com/danhper/asdf-python',
config: { config: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment