Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading