Skip to content

Commit 544c623

Browse files
Merge pull request GoogleCloudPlatform#2878 from anhdle-sso/increase_lint_timeout
Increase lint workflow timeout to 10m
2 parents 4d5f600 + 05174b7 commit 544c623

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/lint.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
lint:
3333
name: lint
3434
runs-on: ubuntu-22.04
35-
timeout-minutes: 7
35+
timeout-minutes: 12
3636
steps:
3737
- name: Check out code into the Go module directory
3838
uses: actions/checkout@v3
@@ -47,3 +47,4 @@ jobs:
4747
uses: golangci/[email protected]
4848
with:
4949
version: v1.59.1 # should match the version in Makefile
50+
args: --timeout=10m

.github/workflows/presubmit-compositions.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
lint:
3131
name: lint
3232
runs-on: ubuntu-22.04
33-
timeout-minutes: 7
33+
timeout-minutes: 12
3434
steps:
3535
- name: Check out code into the Go module directory
3636
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
working-directory: ./experiments/compositions/composition
4848
version: v1.59.1 # should match the version in Makefile
49-
args: --timeout=5m
49+
args: --timeout=10m
5050
verify-goimports:
5151
runs-on: ubuntu-latest
5252
steps:

.golangci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
run:
16-
timeout: 5m
16+
timeout: 10m
1717
issues:
1818
exclude-dirs:
1919
- third_party

0 commit comments

Comments
 (0)