Skip to content

Commit 4728286

Browse files
committed
fix: remove MySQL version pin in legacy CI workflow
The pinned versions 8.4.6 and 8.4.9 both fail — 8.4.6 downloads from a dead CDN URL, and 8.4.9 doesn't exist on Chocolatey. Removing the pin lets Chocolatey resolve the latest approved version with a valid URL.
1 parent 9ea3675 commit 4728286

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/legacy-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
shell: pwsh
7272
command: |
7373
$mysqlJob = Start-Job -ScriptBlock {
74-
choco install mysql --no-progress --version=8.4.9 -y --params "/serviceName:MySQL"
74+
choco install mysql --no-progress -y --params "/serviceName:MySQL"
7575
return $LASTEXITCODE
7676
}
7777

0 commit comments

Comments
 (0)