File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
test :
5
5
strategy :
6
6
matrix :
7
- go-version : [1.21 .x, 1.22 .x]
7
+ go-version : [1.22 .x, 1.23 .x]
8
8
os : [ubuntu-latest]
9
9
runs-on : ${{ matrix.os }}
10
10
steps :
11
11
- name : Install Go
12
- uses : actions/setup-go@v2
12
+ uses : actions/setup-go@v5
13
13
with :
14
14
go-version : ${{ matrix.go-version }}
15
15
- name : Checkout code
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v4
17
17
- name : Download test data
18
18
# TODO(@shibumi): Remove pinned version and reset to master, once the failing npm test-cases got fixed.
19
19
run : curl -L https://raw.githubusercontent.com/package-url/purl-spec/0dd92f26f8bb11956ffdf5e8acfcee71e8560407/test-suite-data.json -o testdata/test-suite-data.json
20
20
- name : Test go fmt
21
21
run : test -z $(go fmt ./...)
22
22
- name : Golangci-lint
23
- uses : golangci/golangci-lint-action@v2
23
+ uses : golangci/golangci-lint-action@v6
24
24
with :
25
25
only-new-issues : true
26
26
- name : Test coverage
You can’t perform that action at this time.
0 commit comments