Skip to content

Commit 8c5d4d6

Browse files
authored
Update GitHub Actions workflows. (#1043)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit 0ec2b8485fe51c364be44467682099d341ac9466.
1 parent b56c95a commit 8c5d4d6

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/actions/setup-tools/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
steps:
2727
- name: Install Go
2828
if: inputs.tools == 'all' || contains(inputs.tools, 'go')
29-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
29+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
3030
with:
3131
go-version: "1.21.x"
3232
cache-dependency-path: |

.github/workflows/build_sdk.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@ jobs:
6666
uses: ./.github/actions/download-codegen
6767
- name: Update path
6868
run: echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH"
69+
- name: Download schema-embed.json
70+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
71+
with:
72+
# Use a pattern to avoid failing if the artifact doesn't exist
73+
pattern: schema-embed.*
74+
# Avoid creating directories for each artifact
75+
merge-multiple: true
76+
path: provider/cmd/pulumi-resource-cloudflare
6977
- name: Restore makefile progress
7078
run: make --touch provider schema
7179
- name: Build SDK

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
persist-credentials: false
3838
- name: Install go
39-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
39+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
4040
with:
4141
# The versions of golangci-lint and setup-go here cross-depend and need to update together.
4242
go-version: 1.23

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PULUMICTL_VERSION := v0.0.46
1919
PULUMICTL := $(shell which pulumictl || \
2020
(test ! -e $(WORKING_DIR)/bin/pulumictl && \
2121
GOPATH="$(WORKING_DIR)" go install "github.com/pulumi/pulumictl/cmd/pulumictl@$(PULUMICTL_VERSION)"; \
22-
echo "$(WORKING_DIR)/bin/puluimctl"))
22+
echo "$(WORKING_DIR)/bin/pulumictl"))
2323

2424
# Override during CI using `make [TARGET] PROVIDER_VERSION=""` or by setting a PROVIDER_VERSION environment variable
2525
# Local & branch builds will just used this fixed default version unless specified

0 commit comments

Comments
 (0)