Skip to content

Commit 2c22bbe

Browse files
committed
ci: use go 1.25.x
1 parent bdf1030 commit 2c22bbe

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/go.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: 1.26.x
32+
go-version: 1.25.x
3333
- name: Check Go module tidiness
3434
shell: bash
3535
run: |
@@ -42,15 +42,16 @@ jobs:
4242
exit 1
4343
fi
4444
- name: Run golangci-lint
45-
run: |
46-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
47-
golangci-lint run --timeout=30m
45+
uses: golangci/golangci-lint-action@v6
46+
with:
47+
version: latest
48+
args: --timeout=30m
4849

4950
test:
5051
name: Test
5152
strategy:
5253
matrix:
53-
go-version: [ 1.26.x ]
54+
go-version: [ 1.25.x ]
5455
platform: [ ubuntu-latest, macos-latest, windows-latest ]
5556
runs-on: ${{ matrix.platform }}
5657
steps:

0 commit comments

Comments
 (0)