File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -18,29 +18,29 @@ jobs:
18
18
steps :
19
19
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20
20
- name : Checkout code
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
23
23
- name : Setup Go environment
24
- uses : actions/setup-go@v2
24
+ uses : actions/setup-go@v5
25
25
26
26
- name : Checking compilation errors while generating image
27
27
run : env GOOS=linux go build -o "sumologic-extension" "lambda-extensions/sumologic-extension.go"
28
28
29
29
test :
30
30
strategy :
31
31
matrix :
32
- go-version : [1.21.x, 1.22.x ]
32
+ go : [' 1.21', ' 1.22' ]
33
33
os : [ubuntu-latest, macos-latest]
34
34
runs-on : ${{ matrix.os }}
35
35
36
36
steps :
37
+ - name : Checkout code
38
+ uses : actions/checkout@v4
39
+
37
40
- name : Setup Go (version - ${{ matrix.go }})
38
- uses : actions/setup-go@v2
41
+ uses : actions/setup-go@v5
39
42
with :
40
43
go-version : ${{ matrix.go }}
41
44
42
- - name : Checkout code
43
- uses : actions/checkout@v2
44
-
45
45
- name : Run Unit Tests
46
46
run : go test ./...
You can’t perform that action at this time.
0 commit comments