@@ -11,11 +11,11 @@ jobs:
11
11
steps :
12
12
- name : Checkout
13
13
id : go
14
- uses : actions/checkout@v1
14
+ uses : actions/checkout@v4
15
15
- name : Set Up Golang
16
- uses : actions/setup-go@v3
16
+ uses : actions/setup-go@v5
17
17
with :
18
- go-version : 1.18
18
+ go-version : 1.22
19
19
- name : Check Dependencies
20
20
run : |
21
21
go list -json -deps > go.list
37
37
- name : Nancy Vulnerability
38
38
uses : sonatype-nexus-community/nancy-github-action@main
39
39
with :
40
- nancyVersion : v1.0.36
40
+ nancyVersion : v1.0.46
41
41
nancyCommand : sleuth
42
42
- name : GolangCI Lint
43
43
run : |
@@ -53,14 +53,14 @@ jobs:
53
53
- name : Upload Coverage Report
54
54
env :
55
55
COVERALLS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
56
- run : GO111MODULE=off go get github.com/mattn/goveralls && $(go env GOPATH)/bin/goveralls -v -coverprofile=coverage.out -service=github
56
+ run : go install github.com/mattn/goveralls@latest && $(go env GOPATH)/bin/goveralls -v -coverprofile=coverage.out -service=github
57
57
alpine_tests :
58
58
name : Alpine Linux Platform Tests
59
59
runs-on : ubuntu-latest
60
60
container :
61
- image : golang:1.18 -alpine
61
+ image : golang:1.22 -alpine
62
62
steps :
63
- - uses : actions/checkout@v1
63
+ - uses : actions/checkout@v4
64
64
- name : Set Up
65
65
run : |
66
66
apk add --upgrade gcc g++ && \
@@ -75,11 +75,11 @@ jobs:
75
75
runs-on : ${{ matrix.os }}
76
76
steps :
77
77
- name : Checkout
78
- uses : actions/checkout@v1
78
+ uses : actions/checkout@v4
79
79
- name : Set Up Golang
80
- uses : actions/setup-go@v3
80
+ uses : actions/setup-go@v5
81
81
with :
82
- go-version : 1.18
82
+ go-version : 1.22
83
83
- name : Platform Tests
84
84
run : |
85
85
cd platform-test
0 commit comments