@@ -14,11 +14,11 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Checkout code
17
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v4
18
18
- name : Setup Golang
19
19
uses : actions/setup-go@v1
20
20
with :
21
- go-version : ' 1.19 '
21
+ go-version : ' 1.21 '
22
22
- name : Download all Go modules
23
23
run : |
24
24
go mod download
@@ -32,11 +32,11 @@ jobs:
32
32
runs-on : ubuntu-latest
33
33
steps :
34
34
- name : Checkout code
35
- uses : actions/checkout@v2
35
+ uses : actions/checkout@v4
36
36
- name : Setup Golang
37
37
uses : actions/setup-go@v1
38
38
with :
39
- go-version : ' 1.19 '
39
+ go-version : ' 1.21 '
40
40
- name : Restore go build cache
41
41
uses : actions/cache@v1
42
42
with :
51
51
runs-on : ubuntu-latest
52
52
steps :
53
53
- name : Checkout code
54
- uses : actions/checkout@v2
54
+ uses : actions/checkout@v4
55
55
- name : Run golangci-lint
56
56
uses : golangci/golangci-lint-action@v3
57
57
with :
@@ -66,15 +66,15 @@ jobs:
66
66
- name : Create checkout directory
67
67
run : mkdir -p ~/go/src/github.com/gitpod-io
68
68
- name : Checkout code
69
- uses : actions/checkout@v2
69
+ uses : actions/checkout@v4
70
70
with :
71
71
fetch-depth : 10
72
72
- name : Create symlink in GOPATH
73
73
run : ln -s $(pwd) ~/go/src/github.com/gitpod-io/leeway
74
74
- name : Setup Golang
75
75
uses : actions/setup-go@v1
76
76
with :
77
- go-version : ' 1.19 '
77
+ go-version : ' 1.21 '
78
78
- name : Restore go build cache
79
79
uses : actions/cache@v1
80
80
with :
@@ -100,15 +100,15 @@ jobs:
100
100
- name : Create checkout directory
101
101
run : mkdir -p ~/go/src/github.com/gitpod-io
102
102
- name : Checkout code
103
- uses : actions/checkout@v2
103
+ uses : actions/checkout@v4
104
104
with :
105
105
fetch-depth : 10
106
106
- name : Create symlink in GOPATH
107
107
run : ln -s $(pwd) ~/go/src/github.com/gitpod-io/leeway
108
108
- name : Setup Golang
109
109
uses : actions/setup-go@v1
110
110
with :
111
- go-version : ' 1.19 '
111
+ go-version : ' 1.21 '
112
112
- name : Restore go build cache
113
113
uses : actions/cache@v1
114
114
with :
@@ -127,7 +127,7 @@ jobs:
127
127
- test-go
128
128
steps :
129
129
- name : Checkout code
130
- uses : actions/checkout@v2
130
+ uses : actions/checkout@v4
131
131
with :
132
132
fetch-depth : 10
133
133
- name : Create test-results directory
0 commit comments