From 298363b1d48d46d2992ce3d317f9e702c793b6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guszt=C3=A1v=20Varga?= Date: Wed, 7 Aug 2024 08:32:48 +0200 Subject: [PATCH] Update for 2407 (#454) * Update Packer versions * Add pending VirtualBox pipelines --- .../windows-11/insider-preview-enterprise/virtualbox.yml | 9 +++++++++ .../insider-preview-standard-core/virtualbox.yml | 9 +++++++++ .../insider-preview-standard/virtualbox.yml | 9 +++++++++ src/ubuntu/build.vagrant.pkr.hcl | 2 +- src/ubuntu/core.pkr.hcl | 2 +- src/ubuntu/source.amazon-ebs.pkr.hcl | 2 +- src/ubuntu/source.hyperv.pkr.hcl | 2 +- src/ubuntu/source.virtualbox.pkr.hcl | 2 +- src/ubuntu/source.vmware.pkr.hcl | 2 +- src/windows/build.vagrant.pkr.hcl | 2 +- src/windows/core.pkr.hcl | 2 +- src/windows/source.amazon-ebs.pkr.hcl | 2 +- src/windows/source.hyperv.pkr.hcl | 2 +- src/windows/source.virtualbox.pkr.hcl | 2 +- src/windows/source.vmware.pkr.hcl | 2 +- 15 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 .azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml create mode 100644 .azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml create mode 100644 .azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml diff --git a/.azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml b/.azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml new file mode 100644 index 000000000..02faaf85f --- /dev/null +++ b/.azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml @@ -0,0 +1,9 @@ +trigger: none +pr: none + +stages: + - template: ../../stages.yml + parameters: + sample: windows-11 + image: insider-preview-enterprise + provider: virtualbox diff --git a/.azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml b/.azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml new file mode 100644 index 000000000..7e46e89a9 --- /dev/null +++ b/.azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml @@ -0,0 +1,9 @@ +trigger: none +pr: none + +stages: + - template: ../../stages.yml + parameters: + sample: windows-server + image: insider-preview-standard-core + provider: virtualbox diff --git a/.azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml b/.azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml new file mode 100644 index 000000000..4049e91a5 --- /dev/null +++ b/.azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml @@ -0,0 +1,9 @@ +trigger: none +pr: none + +stages: + - template: ../../stages.yml + parameters: + sample: windows-server + image: insider-preview-standard + provider: virtualbox diff --git a/src/ubuntu/build.vagrant.pkr.hcl b/src/ubuntu/build.vagrant.pkr.hcl index f3dc7d84e..f88113694 100644 --- a/src/ubuntu/build.vagrant.pkr.hcl +++ b/src/ubuntu/build.vagrant.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { vagrant = { - version = "~> 1.1" + version = "~> 1.1.4" source = "github.com/hashicorp/vagrant" } } diff --git a/src/ubuntu/core.pkr.hcl b/src/ubuntu/core.pkr.hcl index 2971b7158..a522beffc 100644 --- a/src/ubuntu/core.pkr.hcl +++ b/src/ubuntu/core.pkr.hcl @@ -1,5 +1,5 @@ packer { - required_version = "~> 1.9" + required_version = "~> 1.11.1" } variable "author" { diff --git a/src/ubuntu/source.amazon-ebs.pkr.hcl b/src/ubuntu/source.amazon-ebs.pkr.hcl index 80241c4e8..be3ac6daf 100644 --- a/src/ubuntu/source.amazon-ebs.pkr.hcl +++ b/src/ubuntu/source.amazon-ebs.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { amazon = { - version = "~> 1.2" + version = "~> 1.3.2" source = "github.com/hashicorp/amazon" } } diff --git a/src/ubuntu/source.hyperv.pkr.hcl b/src/ubuntu/source.hyperv.pkr.hcl index 494ef5705..814ecb342 100644 --- a/src/ubuntu/source.hyperv.pkr.hcl +++ b/src/ubuntu/source.hyperv.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { hyperv = { - version = "~> 1.1" + version = "~> 1.1.3" source = "github.com/hashicorp/hyperv" } } diff --git a/src/ubuntu/source.virtualbox.pkr.hcl b/src/ubuntu/source.virtualbox.pkr.hcl index 2acd25591..8d0fb0100 100644 --- a/src/ubuntu/source.virtualbox.pkr.hcl +++ b/src/ubuntu/source.virtualbox.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { virtualbox = { - version = "~> 1.0" + version = "~> 1.1.0" source = "github.com/hashicorp/virtualbox" } } diff --git a/src/ubuntu/source.vmware.pkr.hcl b/src/ubuntu/source.vmware.pkr.hcl index 855a0854c..8c9444515 100644 --- a/src/ubuntu/source.vmware.pkr.hcl +++ b/src/ubuntu/source.vmware.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { vmware = { - version = "~> 1.0" + version = "~> 1.0.11" source = "github.com/hashicorp/vmware" } } diff --git a/src/windows/build.vagrant.pkr.hcl b/src/windows/build.vagrant.pkr.hcl index d480559b4..b37d8daa2 100644 --- a/src/windows/build.vagrant.pkr.hcl +++ b/src/windows/build.vagrant.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { vagrant = { - version = "~> 1.1" + version = "~> 1.1.4" source = "github.com/hashicorp/vagrant" } } diff --git a/src/windows/core.pkr.hcl b/src/windows/core.pkr.hcl index 2971b7158..a522beffc 100644 --- a/src/windows/core.pkr.hcl +++ b/src/windows/core.pkr.hcl @@ -1,5 +1,5 @@ packer { - required_version = "~> 1.9" + required_version = "~> 1.11.1" } variable "author" { diff --git a/src/windows/source.amazon-ebs.pkr.hcl b/src/windows/source.amazon-ebs.pkr.hcl index 80241c4e8..be3ac6daf 100644 --- a/src/windows/source.amazon-ebs.pkr.hcl +++ b/src/windows/source.amazon-ebs.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { amazon = { - version = "~> 1.2" + version = "~> 1.3.2" source = "github.com/hashicorp/amazon" } } diff --git a/src/windows/source.hyperv.pkr.hcl b/src/windows/source.hyperv.pkr.hcl index 3c6c8ab9d..5266b5764 100644 --- a/src/windows/source.hyperv.pkr.hcl +++ b/src/windows/source.hyperv.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { hyperv = { - version = "~> 1.1" + version = "~> 1.1.3" source = "github.com/hashicorp/hyperv" } } diff --git a/src/windows/source.virtualbox.pkr.hcl b/src/windows/source.virtualbox.pkr.hcl index 392b82fab..1798fa5cd 100644 --- a/src/windows/source.virtualbox.pkr.hcl +++ b/src/windows/source.virtualbox.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { virtualbox = { - version = "~> 1.0" + version = "~> 1.1.0" source = "github.com/hashicorp/virtualbox" } } diff --git a/src/windows/source.vmware.pkr.hcl b/src/windows/source.vmware.pkr.hcl index b6d7ab079..e74bfa602 100644 --- a/src/windows/source.vmware.pkr.hcl +++ b/src/windows/source.vmware.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { vmware = { - version = "~> 1.0" + version = "~> 1.0.11" source = "github.com/hashicorp/vmware" } }