diff --git a/pkg/rancher-desktop/assets/dependencies.yaml b/pkg/rancher-desktop/assets/dependencies.yaml index cc6088cf5c3..726b478297c 100644 --- a/pkg/rancher-desktop/assets/dependencies.yaml +++ b/pkg/rancher-desktop/assets/dependencies.yaml @@ -1,4 +1,4 @@ -lima: 1.0.4.rd2 +lima: 1.0.4.rd3 qemu: 9.2.0.rd2 socketVMNet: 1.2.1 alpineLimaISO: diff --git a/scripts/dependencies/lima.ts b/scripts/dependencies/lima.ts index 025d801a266..2df448cdbf7 100644 --- a/scripts/dependencies/lima.ts +++ b/scripts/dependencies/lima.ts @@ -10,7 +10,14 @@ import semver from 'semver'; import { download, downloadTarGZ, getResource } from '../lib/download'; import { - DownloadContext, Dependency, AlpineLimaISOVersion, findChecksum, getOctokit, GitHubDependency, getPublishedReleaseTagNames, GitHubRelease, + AlpineLimaISOVersion, + Dependency, + DownloadContext, + findChecksum, + getOctokit, + getPublishedReleaseTagNames, + GitHubDependency, + GitHubRelease, } from 'scripts/lib/dependencies'; import { simpleSpawn } from 'scripts/simple_process'; @@ -58,7 +65,7 @@ export class Lima implements Dependency, GitHubDependency { let platform: string = context.platform; if (platform === 'darwin') { - platform = `macos-13.${ process.env.M1 ? 'arm64' : 'amd64' }`; + platform = `macos-15.${ process.env.M1 ? 'arm64' : 'amd64' }`; } else { platform = 'linux.amd64'; }