From ac718200dad8181c545f250631c3ab1a82ea3aa4 Mon Sep 17 00:00:00 2001 From: AdmiringWorm Date: Wed, 11 Dec 2024 12:21:11 +0100 Subject: [PATCH] (maint) Update Validation Extenson to 0.2.0 This updates the package for chocolatey-community-validations.extension that has recently been released. --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index fd587d40395..6f863560bec 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -61,7 +61,7 @@ install: 'chocolatey' = $chocoVersion 'wormies-au-helpers' = '0.4.1' 'chocolatey-core.extension' = '1.4.0' - 'chocolatey-community-validation.extension' = '0.1.0' + 'chocolatey-community-validation.extension' = '0.2.0' }.GetEnumerator() | % { if (!(Test-Path "${env:nupkg_cache_path}\$($_.Key).$($_.Value).nupkg")) { rm "${env:nupkg_cache_path}\$($_.Key).*.nupkg" ; Invoke-WebRequest "https://chocolatey.org/api/v2/package/$($_.Key)/$($_.Value)" -OutFile "${env:nupkg_cache_path}\$($_.Key).$($_.Value).nupkg" } if ($_.Key -eq 'chocolatey') { choco upgrade $_.Key --version $_.Value --source ${env:nupkg_cache_path} --allow-downgrade --pre }