Skip to content

Commit

Permalink
feat(manager/asdf): support vault (#25542)
Browse files Browse the repository at this point in the history
  • Loading branch information
MPV committed Nov 1, 2023
1 parent e0f9266 commit e1f0c16
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/modules/manager/asdf/extract.spec.ts
Expand Up @@ -101,6 +101,7 @@ terragrunt 0.43.2
tflint 0.44.1
tfsec 1.28.1
trivy 0.33.0
vault 1.15.1
zig 0.9.1
maestro 1.24.0
detekt 1.21.0
Expand Down Expand Up @@ -493,6 +494,13 @@ dummy 1.2.3
depName: 'trivy',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '1.15.1',
datasource: 'github-releases',
packageName: 'hashicorp/vault',
depName: 'vault',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '0.9.1',
datasource: 'github-tags',
Expand Down
8 changes: 8 additions & 0 deletions lib/modules/manager/asdf/upgradeable-tooling.ts
Expand Up @@ -552,6 +552,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
extractVersion: '^v(?<version>\\S+)',
},
},
vault: {
asdfPluginUrl: 'https://github.com/asdf-community/asdf-hashicorp',
config: {
datasource: GithubReleasesDatasource.id,
packageName: 'hashicorp/vault',
extractVersion: '^v(?<version>\\S+)',
},
},
zig: {
asdfPluginUrl: 'https://github.com/cheetah/asdf-zig',
config: {
Expand Down

0 comments on commit e1f0c16

Please sign in to comment.