Skip to content

Commit 30841e9

Browse files
committed
[internal] Update GitHub Actions workflow files
1 parent f72d937 commit 30841e9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
steps:
2121
- name: Install Go
2222
if: inputs.tools == 'all' || contains(inputs.tools, 'go')
23-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
23+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
2424
with:
2525
go-version: "1.21.x"
2626
cache-dependency-path: |

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
persist-credentials: false
4141
- name: Install go
42-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
42+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
4343
with:
4444
# The versions of golangci-lint and setup-go here cross-depend and need to update together.
4545
go-version: 1.23

.github/workflows/master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
token: ${{ secrets.GITHUB_TOKEN }}
177177
version: v2.5.0
178178
- name: Run tests
179-
run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4
179+
run: cd examples && go test -v -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4
180180
strategy:
181181
fail-fast: false
182182
matrix:

.github/workflows/prerelease.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
token: ${{ secrets.GITHUB_TOKEN }}
118118
version: v2.5.0
119119
- name: Run tests
120-
run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
120+
run: cd examples && go test -v -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
121121
strategy:
122122
fail-fast: false
123123
matrix:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
token: ${{ secrets.GITHUB_TOKEN }}
124124
version: v2.5.0
125125
- name: Run tests
126-
run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
126+
run: cd examples && go test -v -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
127127
strategy:
128128
fail-fast: false
129129
matrix:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ jobs:
173173
version: v2.5.0
174174
- name: Run tests
175175
if: matrix.testTarget == 'local'
176-
run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -skip TestPulumiExamples -parallel 4 .
176+
run: cd examples && go test -v -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -skip TestPulumiExamples -parallel 4 .
177177
- name: Run pulumi/examples tests
178178
if: matrix.testTarget == 'pulumiExamples'
179-
run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -run TestPulumiExamples -parallel 4 .
179+
run: cd examples && go test -v -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -run TestPulumiExamples -parallel 4 .
180180
strategy:
181181
fail-fast: false
182182
matrix:

0 commit comments

Comments
 (0)