Skip to content

Commit 993baeb

Browse files
authored
[internal] Update GitHub Actions workflow files (#186)
Updates the workflow files to HEAD of ci-mgmt/$GITHUB_REF_NAME (commit 3b12a7c91c75c812b59b786af18210ceb4c17c98)
1 parent 694b122 commit 993baeb

File tree

13 files changed

+365
-552
lines changed

13 files changed

+365
-552
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ jobs:
145145
java-version: ${{ env.JAVAVERSION }}
146146
distribution: temurin
147147
cache: gradle
148+
- name: Setup Gradle
149+
uses: gradle/gradle-build-action@v2
150+
with:
151+
gradle-version: "7.6"
148152
- name: Download provider + tfgen binaries
149153
uses: actions/download-artifact@v2
150154
with:
@@ -233,6 +237,10 @@ jobs:
233237
java-version: ${{ env.JAVAVERSION }}
234238
distribution: temurin
235239
cache: gradle
240+
- name: Setup Gradle
241+
uses: gradle/gradle-build-action@v2
242+
with:
243+
gradle-version: "7.6"
236244
- name: Download provider + tfgen binaries
237245
uses: actions/download-artifact@v2
238246
with:
@@ -445,6 +453,10 @@ jobs:
445453
java-version: ${{ env.JAVAVERSION }}
446454
distribution: temurin
447455
cache: gradle
456+
- name: Setup Gradle
457+
uses: gradle/gradle-build-action@v2
458+
with:
459+
gradle-version: "7.6"
448460
- name: Download java SDK
449461
uses: actions/download-artifact@v2
450462
with:

.github/workflows/prerelease.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ jobs:
137137
java-version: ${{ env.JAVAVERSION }}
138138
distribution: temurin
139139
cache: gradle
140+
- name: Setup Gradle
141+
uses: gradle/gradle-build-action@v2
142+
with:
143+
gradle-version: "7.6"
140144
- name: Download provider + tfgen binaries
141145
uses: actions/download-artifact@v2
142146
with:
@@ -225,6 +229,10 @@ jobs:
225229
java-version: ${{ env.JAVAVERSION }}
226230
distribution: temurin
227231
cache: gradle
232+
- name: Setup Gradle
233+
uses: gradle/gradle-build-action@v2
234+
with:
235+
gradle-version: "7.6"
228236
- name: Download provider + tfgen binaries
229237
uses: actions/download-artifact@v2
230238
with:
@@ -437,6 +445,10 @@ jobs:
437445
java-version: ${{ env.JAVAVERSION }}
438446
distribution: temurin
439447
cache: gradle
448+
- name: Setup Gradle
449+
uses: gradle/gradle-build-action@v2
450+
with:
451+
gradle-version: "7.6"
440452
- name: Download java SDK
441453
uses: actions/download-artifact@v2
442454
with:

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ jobs:
137137
java-version: ${{ env.JAVAVERSION }}
138138
distribution: temurin
139139
cache: gradle
140+
- name: Setup Gradle
141+
uses: gradle/gradle-build-action@v2
142+
with:
143+
gradle-version: "7.6"
140144
- name: Download provider + tfgen binaries
141145
uses: actions/download-artifact@v2
142146
with:
@@ -225,6 +229,10 @@ jobs:
225229
java-version: ${{ env.JAVAVERSION }}
226230
distribution: temurin
227231
cache: gradle
232+
- name: Setup Gradle
233+
uses: gradle/gradle-build-action@v2
234+
with:
235+
gradle-version: "7.6"
228236
- name: Download provider + tfgen binaries
229237
uses: actions/download-artifact@v2
230238
with:
@@ -436,6 +444,10 @@ jobs:
436444
java-version: ${{ env.JAVAVERSION }}
437445
distribution: temurin
438446
cache: gradle
447+
- name: Setup Gradle
448+
uses: gradle/gradle-build-action@v2
449+
with:
450+
gradle-version: "7.6"
439451
- name: Download java SDK
440452
uses: actions/download-artifact@v2
441453
with:

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ jobs:
164164
java-version: ${{ env.JAVAVERSION }}
165165
distribution: temurin
166166
cache: gradle
167+
- name: Setup Gradle
168+
uses: gradle/gradle-build-action@v2
169+
with:
170+
gradle-version: "7.6"
167171
- name: Download provider + tfgen binaries
168172
uses: actions/download-artifact@v2
169173
with:
@@ -255,6 +259,10 @@ jobs:
255259
java-version: ${{ env.JAVAVERSION }}
256260
distribution: temurin
257261
cache: gradle
262+
- name: Setup Gradle
263+
uses: gradle/gradle-build-action@v2
264+
with:
265+
gradle-version: "7.6"
258266
- name: Download provider + tfgen binaries
259267
uses: actions/download-artifact@v2
260268
with:

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pulumi/pulumi-command/examples
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/aws/aws-sdk-go v1.40.34

examples/go.sum

Lines changed: 0 additions & 196 deletions
Large diffs are not rendered by default.

examples/random-go/go.mod

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,68 @@
11
module goaws
22

3-
go 1.13
3+
go 1.19
44

55
require (
66
github.com/pulumi/pulumi-command/sdk v0.0.1
7-
github.com/pulumi/pulumi/sdk/v3 v3.20.1-0.20211216225508-8a73104cd690
7+
github.com/pulumi/pulumi/sdk/v3 v3.47.0
8+
)
9+
10+
require (
11+
github.com/Microsoft/go-winio v0.5.2 // indirect
12+
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
13+
github.com/acomagu/bufpipe v1.0.3 // indirect
14+
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
15+
github.com/blang/semver v3.5.1+incompatible // indirect
16+
github.com/cheggaaa/pb v1.0.18 // indirect
17+
github.com/djherbis/times v1.2.0 // indirect
18+
github.com/emirpasic/gods v1.12.0 // indirect
19+
github.com/go-git/gcfg v1.5.0 // indirect
20+
github.com/go-git/go-billy/v5 v5.3.1 // indirect
21+
github.com/go-git/go-git/v5 v5.4.2 // indirect
22+
github.com/gofrs/uuid v3.3.0+incompatible // indirect
23+
github.com/gogo/protobuf v1.3.2 // indirect
24+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
25+
github.com/golang/protobuf v1.4.2 // indirect
26+
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
27+
github.com/hashicorp/errwrap v1.0.0 // indirect
28+
github.com/hashicorp/go-multierror v1.0.0 // indirect
29+
github.com/imdario/mergo v0.3.12 // indirect
30+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
31+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
32+
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
33+
github.com/mattn/go-runewidth v0.0.8 // indirect
34+
github.com/mitchellh/go-homedir v1.1.0 // indirect
35+
github.com/mitchellh/go-ps v1.0.0 // indirect
36+
github.com/opentracing/basictracer-go v1.0.0 // indirect
37+
github.com/opentracing/opentracing-go v1.1.0 // indirect
38+
github.com/pkg/errors v0.9.1 // indirect
39+
github.com/pkg/term v1.1.0 // indirect
40+
github.com/rivo/uniseg v0.2.0 // indirect
41+
github.com/rogpeppe/go-internal v1.8.1 // indirect
42+
github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94 // indirect
43+
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect
44+
github.com/sergi/go-diff v1.1.0 // indirect
45+
github.com/spf13/cobra v1.4.0 // indirect
46+
github.com/spf13/pflag v1.0.5 // indirect
47+
github.com/texttheater/golang-levenshtein v0.0.0-20191208221605-eb6844b05fc6 // indirect
48+
github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 // indirect
49+
github.com/uber/jaeger-client-go v2.22.1+incompatible // indirect
50+
github.com/uber/jaeger-lib v2.2.0+incompatible // indirect
51+
github.com/xanzy/ssh-agent v0.3.2 // indirect
52+
go.uber.org/atomic v1.6.0 // indirect
53+
golang.org/x/crypto v0.0.0-20220824171710-5757bc0c5503 // indirect
54+
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
55+
golang.org/x/sys v0.0.0-20220823224334-20c2bfdbfe24 // indirect
56+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
57+
golang.org/x/text v0.3.6 // indirect
58+
google.golang.org/genproto v0.0.0-20200608115520-7c474a2e3482 // indirect
59+
google.golang.org/grpc v1.29.1 // indirect
60+
google.golang.org/protobuf v1.24.0 // indirect
61+
gopkg.in/warnings.v0 v0.1.2 // indirect
62+
gopkg.in/yaml.v2 v2.4.0 // indirect
63+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
64+
lukechampine.com/frand v1.4.2 // indirect
65+
sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0 // indirect
866
)
967

1068
replace github.com/pulumi/pulumi-command/sdk => ../../sdk

0 commit comments

Comments
 (0)