File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
11
11
steps :
12
12
13
13
- name : Set up Go
14
- uses : actions/setup-go@v3
14
+ uses : actions/setup-go@v5
15
15
with :
16
16
go-version : ${{ matrix.go-version }}
17
17
id : go
18
18
19
19
- name : Check out code into the Go module directory
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
22
22
- name : Get dependencies
23
23
run : |
@@ -26,18 +26,18 @@ jobs:
26
26
run : go build -v .
27
27
28
28
- name : Checkout test XSD
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
with :
31
31
repository : xuri/xsd
32
32
path : data
33
33
34
34
- name : Test
35
- run : go test -v -timeout 60m -coverprofile=coverage.txt -covermode=atomic ./
35
+ run : go test -v -timeout 60m -coverprofile=' coverage.txt' -covermode=atomic ./
36
36
37
37
- name : Codecov
38
- uses : codecov/codecov-action@v3
38
+ uses : codecov/codecov-action@v4
39
39
with :
40
- token : ${{secrets.CODECOV_TOKEN}}
40
+ token : ${{ secrets.CODECOV_TOKEN }}
41
41
file : coverage.txt
42
42
flags : unittests
43
43
name : codecov-umbrella
You can’t perform that action at this time.
0 commit comments