Update the language server to v0.6.0

Signed-off-by: Remy Suen <remy.suen@docker.com>
This commit is contained in:
Remy Suen 2025-05-07 12:50:51 -04:00
parent 1dc0595427
commit 403b1af5c3
No known key found for this signature in database
GPG Key ID: A6B90F06DB1D9658
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ async function downloadLanguageServerBinary() {
console.log(platform);
console.log(arch);
const suffix = platform === 'windows' ? '.exe' : '';
const version = '0.4.1';
const version = '0.6.0';
const binaryFile = `docker-language-server-${platform}-${arch}-v${version}${suffix}`;
const targetFile = `docker-language-server-${platform}-${arch}${suffix}`;
const url = `https://github.com/docker/docker-language-server/releases/download/v${version}/${binaryFile}`;