Hey :slightly_smiling_face: I am using pulumi’s gi...
# general
p
Hey 🙂 I am using pulumi’s github action
pulumi/action-install-pulumi-cli
- and since yesterday, been getting this error:
Copy code
Error: Unable to resolve action. Repository not found: pulumi/action-install-pulumi-cli
Anyone can help with how can I solve this?
solved it - moved to the action -
pulumi/setup-pulumi@v2
instead
l
@prehistoric-sandwich-7272
pulumi/setup-pulumi@v2
is also very old and no longer maintained. Please upgrade your workflow to only use
pulumi/actions@v3
. The setup/install part is no longer needed. Here is a workflow using it as an example: https://github.com/pulumiverse/infra/blob/main/.github/workflows/push.yml
p
@limited-rainbow-51650 Thanks - but I am using pulumi automation in my workflow - I am doing the set up and then
go run main.go
that eventually does a pulumi up - so I need pulumi to be installed on my machine How can I achieve this using a newer action than
setup-pulumi@v2
?
l
We have this lined up to get into
pulumi/actions
https://github.com/pulumi/actions/pull/834
setup-pulumi
will not be updated anymore.
This is in and released now: https://github.com/pulumi/actions/releases/tag/v4.1.0 The
command
property became optional and it mentions this:
If unspecified, the action will stop after installing Pulumi.
@prehistoric-sandwich-7272 Can you give it a try?
p
@limited-rainbow-51650 Hey, thank you so much for the update I will try that now
@limited-rainbow-51650 Works great