Skip to content

Commit e214b53

Browse files
authored
Update GitHub Actions workflows. (#936)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit d2d946e761bab19abc5e5a598d44cf709dae77e9.
1 parent 87df4d5 commit e214b53

File tree

7 files changed

+35
-27
lines changed

7 files changed

+35
-27
lines changed

.config/mise.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ _.source = "{{config_root}}/scripts/get-versions.sh"
88

99
# Runtimes
1010
# TODO: we may not need `get_env` once https://github.com/jdx/mise/discussions/6339 is fixed
11-
go = "{{ get_env(name='MISE_GO_VERSION', default='latest') }}"
11+
go = "{{ get_env(name='GO_VERSION_MISE', default='latest') }}"
1212
node = '20'
1313
python = '3.11.8'
1414
dotnet = '8.0'
1515
# Corretto version used as Java SE/OpenJDK version no longer offered
1616
java = 'corretto-11'
1717

1818
# Executable tools
19-
pulumi = "{{ get_env(name='MISE_PULUMI_VERSION', default='latest') }}"
19+
pulumi = "{{ get_env(name='PULUMI_VERSION_MISE', default='latest') }}"
2020
"github:pulumi/pulumictl" = 'latest'
2121
"github:pulumi/schema-tools" = "latest"
2222
gradle = '7.6'

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
repo: pulumi/pulumictl
6767
- name: Install Pulumi CLI
68-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
68+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
6969
with:
7070
pulumi-version-file: .pulumi.version
7171
- name: Build codegen binaries
@@ -83,6 +83,7 @@ jobs:
8383
sdk/go/**/pulumiUtilities.go
8484
sdk/nodejs/package.json
8585
sdk/python/pyproject.toml
86+
sdk/java/build.gradle
8687
- name: Commit SDK changes for Renovate
8788
if: failure() && steps.worktreeClean.outcome == 'failure' &&
8889
contains(github.actor, 'renovate') && github.event_name ==
@@ -204,7 +205,7 @@ jobs:
204205
with:
205206
repo: pulumi/pulumictl
206207
- name: Install Pulumi CLI
207-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
208+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
208209
with:
209210
pulumi-version-file: .pulumi.version
210211
- name: Setup Node
@@ -254,6 +255,7 @@ jobs:
254255
sdk/go/**/pulumiUtilities.go
255256
sdk/nodejs/package.json
256257
sdk/python/pyproject.toml
258+
sdk/java/build.gradle
257259
- name: Commit SDK changes for Renovate
258260
if: failure() && steps.worktreeClean.outcome == 'failure' &&
259261
contains(github.actor, 'renovate') && github.event_name ==
@@ -404,7 +406,7 @@ jobs:
404406
with:
405407
repo: pulumi/pulumictl
406408
- name: Install Pulumi CLI
407-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
409+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
408410
with:
409411
pulumi-version-file: .pulumi.version
410412
- name: Setup Node
@@ -544,7 +546,7 @@ jobs:
544546
with:
545547
repo: pulumi/pulumictl
546548
- name: Install Pulumi CLI
547-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
549+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
548550
with:
549551
pulumi-version-file: .pulumi.version
550552
- name: Configure AWS Credentials
@@ -623,7 +625,7 @@ jobs:
623625
with:
624626
repo: pulumi/pulumictl
625627
- name: Install Pulumi CLI
626-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
628+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
627629
- name: Setup Node
628630
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
629631
with:

.github/workflows/prerelease.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
repo: pulumi/pulumictl
5656
- name: Install Pulumi CLI
57-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
57+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
5858
with:
5959
pulumi-version-file: .pulumi.version
6060
- name: Build codegen binaries
@@ -72,6 +72,7 @@ jobs:
7272
sdk/go/**/pulumiUtilities.go
7373
sdk/nodejs/package.json
7474
sdk/python/pyproject.toml
75+
sdk/java/build.gradle
7576
- name: Commit SDK changes for Renovate
7677
if: failure() && steps.worktreeClean.outcome == 'failure' &&
7778
contains(github.actor, 'renovate') && github.event_name ==
@@ -193,7 +194,7 @@ jobs:
193194
with:
194195
repo: pulumi/pulumictl
195196
- name: Install Pulumi CLI
196-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
197+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
197198
with:
198199
pulumi-version-file: .pulumi.version
199200
- name: Setup Node
@@ -243,6 +244,7 @@ jobs:
243244
sdk/go/**/pulumiUtilities.go
244245
sdk/nodejs/package.json
245246
sdk/python/pyproject.toml
247+
sdk/java/build.gradle
246248
- name: Commit ${{ matrix.language }} SDK changes for Renovate
247249
if: failure() && steps.worktreeClean.outcome == 'failure' &&
248250
contains(github.actor, 'renovate') && github.event_name ==
@@ -357,7 +359,7 @@ jobs:
357359
with:
358360
repo: pulumi/pulumictl
359361
- name: Install Pulumi CLI
360-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
362+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
361363
with:
362364
pulumi-version-file: .pulumi.version
363365
- name: Setup Node
@@ -497,7 +499,7 @@ jobs:
497499
with:
498500
repo: pulumi/pulumictl
499501
- name: Install Pulumi CLI
500-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
502+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
501503
with:
502504
pulumi-version-file: .pulumi.version
503505
- name: Configure AWS Credentials
@@ -576,7 +578,7 @@ jobs:
576578
with:
577579
repo: pulumi/pulumictl
578580
- name: Install Pulumi CLI
579-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
581+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
580582
- name: Setup Node
581583
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
582584
with:
@@ -672,7 +674,7 @@ jobs:
672674
with:
673675
repo: pulumi/pulumictl
674676
- name: Install Pulumi CLI
675-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
677+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
676678
- name: Setup Java
677679
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
678680
with:

.github/workflows/release.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
repo: pulumi/pulumictl
5959
- name: Install Pulumi CLI
60-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
60+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
6161
with:
6262
pulumi-version-file: .pulumi.version
6363
- name: Build codegen binaries
@@ -75,6 +75,7 @@ jobs:
7575
sdk/go/**/pulumiUtilities.go
7676
sdk/nodejs/package.json
7777
sdk/python/pyproject.toml
78+
sdk/java/build.gradle
7879
- name: Commit SDK changes for Renovate
7980
if: failure() && steps.worktreeClean.outcome == 'failure' &&
8081
contains(github.actor, 'renovate') && github.event_name ==
@@ -196,7 +197,7 @@ jobs:
196197
with:
197198
repo: pulumi/pulumictl
198199
- name: Install Pulumi CLI
199-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
200+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
200201
with:
201202
pulumi-version-file: .pulumi.version
202203
- name: Setup Node
@@ -246,6 +247,7 @@ jobs:
246247
sdk/go/**/pulumiUtilities.go
247248
sdk/nodejs/package.json
248249
sdk/python/pyproject.toml
250+
sdk/java/build.gradle
249251
- name: Commit SDK changes for Renovate
250252
if: failure() && steps.worktreeClean.outcome == 'failure' &&
251253
contains(github.actor, 'renovate') && github.event_name ==
@@ -360,7 +362,7 @@ jobs:
360362
with:
361363
repo: pulumi/pulumictl
362364
- name: Install Pulumi CLI
363-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
365+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
364366
with:
365367
pulumi-version-file: .pulumi.version
366368
- name: Setup Node
@@ -500,7 +502,7 @@ jobs:
500502
with:
501503
repo: pulumi/pulumictl
502504
- name: Install Pulumi CLI
503-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
505+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
504506
with:
505507
pulumi-version-file: .pulumi.version
506508
- name: Configure AWS Credentials
@@ -579,7 +581,7 @@ jobs:
579581
with:
580582
repo: pulumi/pulumictl
581583
- name: Install Pulumi CLI
582-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
584+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
583585
- name: Setup Node
584586
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
585587
with:
@@ -675,7 +677,7 @@ jobs:
675677
with:
676678
repo: pulumi/pulumictl
677679
- name: Install Pulumi CLI
678-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
680+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
679681
- name: Setup Java
680682
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
681683
with:

.github/workflows/run-acceptance-tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
repo: pulumi/pulumictl
8787
- name: Install Pulumi CLI
88-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
88+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
8989
with:
9090
pulumi-version-file: .pulumi.version
9191
- name: Build codegen binaries
@@ -103,6 +103,7 @@ jobs:
103103
sdk/go/**/pulumiUtilities.go
104104
sdk/nodejs/package.json
105105
sdk/python/pyproject.toml
106+
sdk/java/build.gradle
106107
- name: Commit SDK changes for Renovate
107108
if: failure() && steps.worktreeClean.outcome == 'failure' &&
108109
contains(github.actor, 'renovate') && github.event_name ==
@@ -228,7 +229,7 @@ jobs:
228229
with:
229230
repo: pulumi/pulumictl
230231
- name: Install Pulumi CLI
231-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
232+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
232233
with:
233234
pulumi-version-file: .pulumi.version
234235
- name: Setup Node
@@ -278,6 +279,7 @@ jobs:
278279
sdk/go/**/pulumiUtilities.go
279280
sdk/nodejs/package.json
280281
sdk/python/pyproject.toml
282+
sdk/java/build.gradle
281283
- name: Commit SDK changes for Renovate
282284
if: failure() && steps.worktreeClean.outcome == 'failure' &&
283285
contains(github.actor, 'renovate') && github.event_name ==
@@ -396,7 +398,7 @@ jobs:
396398
with:
397399
repo: pulumi/pulumictl
398400
- name: Install Pulumi CLI
399-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
401+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
400402
with:
401403
pulumi-version-file: .pulumi.version
402404
- name: Setup Node

.github/workflows/weekly-pulumi-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
repo: pulumi/pulumictl
4949
- name: Install Pulumi CLI
50-
uses: pulumi/actions@d7ceb0215da5a14ec84f50b703365ddf0194a9c8 # v6.6.0
50+
uses: pulumi/actions@cc7494be991dba0978f7ffafaf995b0449a0998e # v6.5.0
5151
with:
5252
pulumi-version-file: .pulumi.version
5353
- name: Setup DotNet

scripts/get-versions.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ if [[ -z "${raw_version:-}" ]]; then
3434
exit 1
3535
fi
3636

37-
echo "MISE_PULUMI_VERSION=$raw_version"
38-
export MISE_PULUMI_VERSION=$raw_version
37+
echo "PULUMI_VERSION_MISE=$raw_version"
38+
export PULUMI_VERSION_MISE=$raw_version
3939

4040
# Prefer the toolchain directive if present, otherwise fall back to the `go` version line
4141
go_toolchain=$(awk '/^toolchain[[:space:]]+go[0-9]/{ print $2; exit }' "$gomod")
@@ -51,5 +51,5 @@ if [[ -z "${go_version:-}" ]]; then
5151
exit 1
5252
fi
5353

54-
echo "MISE_GO_VERSION=$go_version"
55-
export MISE_GO_VERSION=$go_version
54+
echo "GO_VERSION_MISE=$go_version"
55+
export GO_VERSION_MISE=$go_version

0 commit comments

Comments
 (0)