Skip to content

Commit d16b387

Browse files
committed
Update CI tool versions
This commit updates several versions in our CI file.
1 parent a0f67c0 commit d16b387

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.21.x, 1.22.x]
7+
go-version: [1.22.x, 1.23.x]
88
os: [ubuntu-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
1111
- name: Install Go
12-
uses: actions/setup-go@v2
12+
uses: actions/setup-go@v5
1313
with:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Download test data
1818
# TODO(@shibumi): Remove pinned version and reset to master, once the failing npm test-cases got fixed.
1919
run: curl -L https://raw.githubusercontent.com/package-url/purl-spec/0dd92f26f8bb11956ffdf5e8acfcee71e8560407/test-suite-data.json -o testdata/test-suite-data.json
2020
- name: Test go fmt
2121
run: test -z $(go fmt ./...)
2222
- name: Golangci-lint
23-
uses: golangci/golangci-lint-action@v2
23+
uses: golangci/golangci-lint-action@v6
2424
with:
2525
only-new-issues: true
2626
- name: Test coverage

0 commit comments

Comments
 (0)