From 70124d675fa8811ae469fb639d1a537b9572391f Mon Sep 17 00:00:00 2001 From: guineveresaenger Date: Wed, 22 Jan 2025 14:34:22 -0800 Subject: [PATCH] Set pulumictl to v0.0.48 to incorporate changes from https://github.com/pulumi/pulumictl/pull/89 --- .ci-mgmt.yaml | 3 +++ .github/actions/setup-tools/action.yml | 2 +- Makefile | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.ci-mgmt.yaml b/.ci-mgmt.yaml index 4df44ee..612c5f6 100644 --- a/.ci-mgmt.yaml +++ b/.ci-mgmt.yaml @@ -50,3 +50,6 @@ publishRegistry: false # For additional options, please refer to the defaults set in ci-mgmt: # https://github.com/pulumi/ci-mgmt/blob/master/provider-ci/internal/pkg/templates/defaults.config.yaml + +toolVersions: + pulumictl: "v0.0.48" \ No newline at end of file diff --git a/.github/actions/setup-tools/action.yml b/.github/actions/setup-tools/action.yml index cb8267e..8c584cd 100644 --- a/.github/actions/setup-tools/action.yml +++ b/.github/actions/setup-tools/action.yml @@ -42,7 +42,7 @@ runs: if: inputs.tools == 'all' || contains(inputs.tools, 'pulumictl') uses: jaxxstorm/action-install-gh-release@cd6b2b78ad38bdd294341cda064ec0692b06215b # v1.14.0 with: - tag: v0.0.46 + tag: v0.0.48 repo: pulumi/pulumictl - name: Install Pulumi CLI diff --git a/Makefile b/Makefile index 823ed91..dcf55d7 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ PULUMI_PROVIDER_BUILD_PARALLELISM ?= PULUMI_CONVERT := 1 PULUMI_MISSING_DOCS_ERROR := true -PULUMICTL_VERSION := v0.0.46 +PULUMICTL_VERSION := v0.0.48 PULUMICTL := $(shell which pulumictl || \ (test ! -e $(WORKING_DIR)/bin/pulumictl && \ GOPATH="$(WORKING_DIR)" go install "github.com/pulumi/pulumictl/cmd/pulumictl@$(PULUMICTL_VERSION)"; \