diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 078d100d50..3e8fd19129 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -40,13 +40,13 @@ jobs: - name: Download Multipass installer uses: carlosperate/download-file-action@v2.0.0 with: - file-url: https://github.com/canonical/multipass/releases/download/v1.10.1/multipass-1.10.1+win-win64.exe + file-url: https://github.com/canonical/multipass/releases/download/v1.11.1/multipass-1.11.1+win-win64.exe file-name: multipass.exe location: ${{ github.workspace }}/installer/windows - name: Download kubectl uses: carlosperate/download-file-action@v2.0.0 with: - file-url: https://storage.googleapis.com/kubernetes-release/release/v1.26.0/bin/windows/amd64/kubectl.exe + file-url: https://storage.googleapis.com/kubernetes-release/release/v1.26.3/bin/windows/amd64/kubectl.exe file-name: kubectl.exe location: ${{ github.workspace }}/installer/windows - name: Create installer diff --git a/installer/vm_providers/_multipass/_windows.py b/installer/vm_providers/_multipass/_windows.py index 349a8f0967..780ebe5377 100644 --- a/installer/vm_providers/_multipass/_windows.py +++ b/installer/vm_providers/_multipass/_windows.py @@ -39,9 +39,12 @@ _MULTIPASS_RELEASES_API_URL = "https://api.github.com/repos/canonical/multipass/releases" -_MULTIPASS_DL_VERSION = "1.10.1" +_MULTIPASS_DL_VERSION = "1.11.1" _MULTIPASS_DL_NAME = "multipass-{version}+win-win64.exe".format(version=_MULTIPASS_DL_VERSION) -_MULTIPASS_DL_SHA3_384 = "57f183873e089450a4200cbfc3dd524b076b1745449320af82712f9cb0ef245f27bc1a1823a44d4ae27abcb893ca1844" # noqa: E501 + +# Download multipass installer and calculate hash: +# python3 -c "from installer.common.file_utils import calculate_sha3_384; print(calculate_sha3_384('$HOME/Downloads/multipass-1.11.1+win-win64.exe'))" # noqa: E501 +_MULTIPASS_DL_SHA3_384 = "7691383eb0f4def0f9e2b5c77f04424756a63f222b3500bdc8fb25bf4725f1c0ce3bd0cb0b7cff7f79d8f489e199225b" # noqa: E501 def windows_reload_multipass_path_env(): diff --git a/installer/windows/microk8s.nsi b/installer/windows/microk8s.nsi index a6858b17e5..5dd17b8f37 100644 --- a/installer/windows/microk8s.nsi +++ b/installer/windows/microk8s.nsi @@ -4,7 +4,7 @@ !include "Sections.nsh" !define PRODUCT_NAME "MicroK8s" -!define PRODUCT_VERSION "2.3.0" +!define PRODUCT_VERSION "2.3.2" !define PRODUCT_PUBLISHER "Canonical" !define MUI_ICON ".\microk8s.ico" !define MUI_HEADERIMAGE