diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index d2e690c..65d72fa 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -21,7 +21,7 @@ jobs: labels: arm-8core-linux strategy: matrix: - go-version: [ '1.25' ] + go-version: [ '1.25.7' ] steps: - name: Setup Go ${{ matrix.go-version }} @@ -91,7 +91,7 @@ jobs: labels: arm-8core-linux strategy: matrix: - go-version: [ '1.25' ] + go-version: [ '1.25.7' ] steps: - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2334b3c..3e1f356 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,10 +17,10 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v6 with: - go-version: '1.25' + go-version: '1.25.7' cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v8 with: - version: v2.1.0 + version: v2.9.0 only-new-issues: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b33be6b..8d718fa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ '1.20', '1.21', '1.22', '1.23', '1.24', '1.25' ] + go-version: [ '1.25', '1.25.7' ] steps: - uses: actions/checkout@v3 diff --git a/go.mod b/go.mod index 1b4e24d..d3dc179 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/DataDog/go-sqllexer retract v0.1.0 // This version had memory leaks and should not be used -go 1.21 +go 1.25 require github.com/stretchr/testify v1.11.1