Skip to content

Commit 6029507

Browse files
authored
feat(statuschecktimeout): Fixing case when only one of the timeout or delay is defined (#188)
Signed-off-by: Shubham Chaudhary <shubham.chaudhary@harness.io> Signed-off-by: Shubham Chaudhary <shubham.chaudhary@harness.io>
1 parent b48382b commit 6029507

File tree

6 files changed

+36
-1081
lines changed

6 files changed

+36
-1081
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Install golang
1111
- uses: actions/setup-go@v2
1212
with:
13-
go-version: 1.17.5
13+
go-version: 1.18
1414

1515
# Checkout to the latest commit
1616
# On specific directory/path
@@ -38,7 +38,7 @@ jobs:
3838
- run: snyk auth ${SNYK_TOKEN}
3939
- uses: actions/setup-go@v1
4040
with:
41-
go-version: '1.17'
41+
go-version: 1.18
4242
- name: Snyk monitor
4343
run: snyk test
4444

@@ -88,7 +88,7 @@ jobs:
8888
# Install golang
8989
- uses: actions/setup-go@v2
9090
with:
91-
go-version: 1.17.5
91+
go-version: 1.18
9292

9393
# Checkout to the latest commit
9494
# On specific directory/path

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# Install golang
1414
- uses: actions/setup-go@v2
1515
with:
16-
go-version: 1.17.5
16+
go-version: 1.18
1717

1818
# Checkout to the latest commit
1919
# On specific directory/path
@@ -73,7 +73,7 @@ jobs:
7373
# Install golang
7474
- uses: actions/setup-go@v2
7575
with:
76-
go-version: 1.17.5
76+
go-version: 1.18
7777

7878
- name: Build chaos-runner image
7979
run: make build-amd64

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Install golang
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.17.5
14+
go-version: 1.18
1515

1616
# Checkout to the latest commit
1717
# On specific directory/path
@@ -86,7 +86,7 @@ jobs:
8686
# Install golang
8787
- uses: actions/setup-go@v2
8888
with:
89-
go-version: 1.17.5
89+
go-version: 1.18
9090

9191
#Install and configure a kind cluster
9292
- name: Installing Prerequisites (K3S Cluster)

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/litmuschaos/chaos-runner
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/jpillora/go-ogle-analytics v0.0.0-20161213085824-14b04e0594ef
@@ -35,11 +35,11 @@ require (
3535
github.com/nxadm/tail v1.4.8 // indirect
3636
github.com/pmezard/go-difflib v1.0.0 // indirect
3737
github.com/spf13/pflag v1.0.5 // indirect
38-
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
38+
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect
3939
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect
40-
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
41-
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
42-
golang.org/x/text v0.3.7 // indirect
40+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
41+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
42+
golang.org/x/text v0.3.8 // indirect
4343
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
4444
google.golang.org/appengine v1.6.7 // indirect
4545
google.golang.org/protobuf v1.26.0 // indirect

0 commit comments

Comments
 (0)