Skip to content

Commit 900ab33

Browse files
Fix golangci-lint workflow to use Go 1.24
The workflow was using go-version: stable which installs Go 1.25.6, causing a mismatch with the project's go.mod that requires Go 1.24. Updated to explicitly use Go 1.24 to match the project's requirements. Co-authored-by: dlevy-msft-sql <[email protected]>
1 parent 6f1b221 commit 900ab33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: stable
14+
go-version: '1.24'
1515
- uses: actions/checkout@v4
1616
- name: golangci-lint
1717
uses: golangci/golangci-lint-action@v6

0 commit comments

Comments
 (0)