.github/workflows: use go1.23.x

And also upgrade staticcheck version to 2024.1.1
This commit is contained in:
Cuong Manh Le
2024-09-30 18:39:53 +07:00
committed by Cuong Manh Le
parent 9d666be5d4
commit 6ca1a7ccc7

View File

@@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
go: ["1.21.x"]
go: ["1.23.x"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
@@ -21,6 +21,6 @@ jobs:
- run: "go test -race ./..."
- uses: dominikh/staticcheck-action@v1.2.0
with:
version: "2023.1.2"
version: "2024.1.1"
install-go: false
cache-key: ${{ matrix.go }}