From 89a26376031e1c6165eaf0de74e1518779aa6746 Mon Sep 17 00:00:00 2001 From: Dimitri Koshkin Date: Tue, 22 Oct 2024 16:31:41 -0700 Subject: [PATCH] fix: update goss Packer plugin (#1208) --- Dockerfile.devkit | 2 +- pkg/packer/manifests/aws/packer.pkr.hcl | 4 ++-- pkg/packer/manifests/azure/packer.pkr.hcl | 4 ++-- pkg/packer/manifests/gcp/packer.pkr.hcl | 4 ++-- pkg/packer/manifests/vsphere/packer.pkr.hcl | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile.devkit b/Dockerfile.devkit index e1a217676..e462f04b7 100644 --- a/Dockerfile.devkit +++ b/Dockerfile.devkit @@ -123,7 +123,7 @@ RUN --mount=type=secret,id=githubtoken PACKER_GITHUB_API_TOKEN="$(cat /run/secre packer-${BUILDARCH} plugins install github.com/hashicorp/ansible ">=1.1.0" && \ packer-${BUILDARCH} plugins install github.com/hashicorp/vsphere ">=1.0.8" && \ packer-${BUILDARCH} plugins install github.com/ivoronin/sshkey ">=1.0.1" && \ - packer-${BUILDARCH} plugins install github.com/supershal/goss ">=3.1.5" + packer-${BUILDARCH} plugins install github.com/mesosphere/goss ">=3.3.0" # Non-trivial bash scripting like e.g. the Makefile require bash instead of # plain sh, in order to function. diff --git a/pkg/packer/manifests/aws/packer.pkr.hcl b/pkg/packer/manifests/aws/packer.pkr.hcl index 84540d5b3..a331aa419 100644 --- a/pkg/packer/manifests/aws/packer.pkr.hcl +++ b/pkg/packer/manifests/aws/packer.pkr.hcl @@ -9,8 +9,8 @@ packer { source = "github.com/hashicorp/ansible" } goss = { - version = ">=3.1.5" - source = "github.com/supershal/goss" + version = ">=3.3.0" + source = "github.com/mesosphere/goss" } } } diff --git a/pkg/packer/manifests/azure/packer.pkr.hcl b/pkg/packer/manifests/azure/packer.pkr.hcl index c2b9b252f..92840cedd 100644 --- a/pkg/packer/manifests/azure/packer.pkr.hcl +++ b/pkg/packer/manifests/azure/packer.pkr.hcl @@ -9,8 +9,8 @@ packer { source = "github.com/hashicorp/ansible" } goss = { - version = ">=3.1.5" - source = "github.com/supershal/goss" + version = ">=3.3.0" + source = "github.com/mesosphere/goss" } } } diff --git a/pkg/packer/manifests/gcp/packer.pkr.hcl b/pkg/packer/manifests/gcp/packer.pkr.hcl index 3c190ac97..9e3d574af 100644 --- a/pkg/packer/manifests/gcp/packer.pkr.hcl +++ b/pkg/packer/manifests/gcp/packer.pkr.hcl @@ -9,8 +9,8 @@ packer { source = "github.com/hashicorp/ansible" } goss = { - version = ">=3.1.5" - source = "github.com/supershal/goss" + version = ">=3.3.0" + source = "github.com/mesosphere/goss" } } } diff --git a/pkg/packer/manifests/vsphere/packer.pkr.hcl b/pkg/packer/manifests/vsphere/packer.pkr.hcl index 82639ad9c..924f7af7f 100644 --- a/pkg/packer/manifests/vsphere/packer.pkr.hcl +++ b/pkg/packer/manifests/vsphere/packer.pkr.hcl @@ -13,8 +13,8 @@ packer { source = "github.com/ivoronin/sshkey" } goss = { - version = ">=3.1.5" - source = "github.com/supershal/goss" + version = ">=3.3.0" + source = "github.com/mesosphere/goss" } } }