Skip to content

Commit 8fbecca

Browse files
authored
Update GitHub Actions workflows. (#5482)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit c2ecd95490e11d58e65add09cd1771e72475b14f.
1 parent 74891d7 commit 8fbecca

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/actions/download-prerequisites/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: "composite"
66
steps:
77
- name: Download the prerequisites bin
8-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
8+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
99
with:
1010
name: prerequisites-bin
1111
path: bin
@@ -19,7 +19,7 @@ runs:
1919
run: rm bin/executables.txt
2020

2121
- name: Download schema-embed.json
22-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
22+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
2323
with:
2424
# Use a pattern to avoid failing if the artifact doesn't exist
2525
pattern: schema-embed.*

.github/actions/download-provider/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
steps:
77

88
- name: Download pulumi-resource-aws
9-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
9+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
1010
with:
1111
pattern: pulumi-resource-aws-*-linux-amd64.tar.gz
1212
path: ${{ github.workspace }}/bin

.github/actions/download-sdk/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Download ${{ inputs.language }} SDK
13-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
13+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
1414
with:
1515
name: ${{ inputs.language }}-sdk.tar.gz
1616
path: ${{ github.workspace}}/sdk/

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ jobs:
7575
- name: Create dist directory
7676
run: mkdir -p dist
7777
- name: Download provider assets
78-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
78+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
7979
with:
8080
pattern: pulumi-resource-aws-v${{ inputs.version }}-*
8181
path: dist
8282
# Don't create a directory for each artifact
8383
merge-multiple: true
8484
- name: Download schema
85-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
85+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
8686
with:
8787
# Use a pattern to avoid failing if the artifact doesn't exist
8888
pattern: schema-embed.*

provider/resources.go

-1
Original file line numberDiff line numberDiff line change
@@ -4468,7 +4468,6 @@ compatibility shim in favor of the new "name" field.`)
44684468
ExtraResources: resourceOverlays,
44694469
ExtraTypes: extraTypes,
44704470
DataSources: map[string]*tfbridge.DataSourceInfo{
4471-
44724471
// Vpc
44734472
"aws_auditmanager_control": {
44744473
Tok: awsDataSource(auditmanagerMod, "getControl"),

0 commit comments

Comments
 (0)