Skip to content

Commit 125f35d

Browse files
authored
Update GitHub Actions workflows. (#5638)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit 198442b19aedc45baebbdb2e705b943dd011241e.
1 parent a2b15e7 commit 125f35d

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/main-post-build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ env:
3333
jobs:
3434
generate_coverage_data:
3535
continue-on-error: true
36-
env:
37-
COVERAGE_OUTPUT_DIR: ${{ secrets.COVERAGE_OUTPUT_DIR }}
3836
name: generate_coverage_data
3937
runs-on: ubuntu-latest
4038
steps:
@@ -62,12 +60,18 @@ jobs:
6260
run: 'echo "Coverage output directory: ${{ env.COVERAGE_OUTPUT_DIR }}"'
6361
- name: Generate Coverage Data
6462
run: PULUMI_MISSING_DOCS_ERROR=true make tfgen
63+
env:
64+
COVERAGE_OUTPUT_DIR: ${{ runner.temp }}/cov
6565
- name: Summarize Provider Coverage Results
6666
run: cat ${{ env.COVERAGE_OUTPUT_DIR }}/shortSummary.txt
67+
env:
68+
COVERAGE_OUTPUT_DIR: ${{ runner.temp }}/cov
6769
- name: Upload coverage data to S3
6870
run: >-
6971
summaryName="${PROVIDER}_summary_$(date +"%Y-%m-%d_%H-%M-%S").json"
7072
7173
s3FullURI="s3://${{ secrets.S3_COVERAGE_BUCKET_NAME }}/summaries/${summaryName}"
7274
7375
aws s3 cp "${{ env.COVERAGE_OUTPUT_DIR }}/summary.json" "${s3FullURI}" --acl bucket-owner-full-control
76+
env:
77+
COVERAGE_OUTPUT_DIR: ${{ runner.temp }}/cov

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ jobs:
141141
cache-go: false
142142
- name: Publish SDKs
143143
if: inputs.skipJavaSdk == false
144-
uses: pulumi/pulumi-package-publisher@696a0fe98f86d86ada2a842d1859f3e8c40d6cd7 # v0.0.21
144+
uses: pulumi/pulumi-package-publisher@c1672c7928591d563dccb12729e05e315c21f8c2 # v0.0.22
145145
with:
146146
sdk: all
147147
version: ${{ inputs.version }}
148148
- name: Publish SDKs (except Java)
149149
if: inputs.skipJavaSdk == true
150-
uses: pulumi/pulumi-package-publisher@696a0fe98f86d86ada2a842d1859f3e8c40d6cd7 # v0.0.21
150+
uses: pulumi/pulumi-package-publisher@c1672c7928591d563dccb12729e05e315c21f8c2 # v0.0.22
151151
with:
152152
sdk: all,!java
153153
version: ${{ inputs.version }}

.github/workflows/upgrade-bridge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
tools: pulumictl, pulumicli, nodejs, python, dotnet, go, java
106106
- name: Call upgrade provider action
107107
if: github.event_name == 'workflow_dispatch'
108-
uses: pulumi/pulumi-upgrade-provider-action@819d5a53c48d0c7ddd67acbc82eb220b342084eb # v0.0.16
108+
uses: pulumi/pulumi-upgrade-provider-action@3c670a7cb92732324c8ccc17f7f9ef9dfca126d0 # v0.0.17
109109
with:
110110
kind: ${{ inputs.kind }}
111111
@@ -119,7 +119,7 @@ jobs:
119119
patch-release: ${{ github.event.client_payload.patch-release }}
120120
- name: Call upgrade provider action
121121
if: github.event_name == 'repository_dispatch'
122-
uses: pulumi/pulumi-upgrade-provider-action@819d5a53c48d0c7ddd67acbc82eb220b342084eb # v0.0.16
122+
uses: pulumi/pulumi-upgrade-provider-action@3c670a7cb92732324c8ccc17f7f9ef9dfca126d0 # v0.0.17
123123
with:
124124
kind: ${{ github.event.client_payload.kind || 'bridge' }}
125125

.github/workflows/upgrade-provider.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
id: upgrade_provider
8080
if: steps.target_version.outputs.version != ''
8181
continue-on-error: true
82-
uses: pulumi/pulumi-upgrade-provider-action@819d5a53c48d0c7ddd67acbc82eb220b342084eb # v0.0.16
82+
uses: pulumi/pulumi-upgrade-provider-action@3c670a7cb92732324c8ccc17f7f9ef9dfca126d0 # v0.0.17
8383
with:
8484
kind: provider
8585

0 commit comments

Comments
 (0)