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/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.5"
go-version: "1.26"

- name: Run ui build
run: make ui-build

- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.4
version: v2.11

- name: Run lint
run: make lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: 1.25.5
go-version: 1.26

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.4
version: v2.11

- name: Tests
run: make test
Expand Down
5 changes: 5 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ builds:
- arm64
- arm
- "386"
ignore:
- goos: darwin
goarch: '386'
- goos: windows
goarch: arm
main: ./cmd/sql-to-logsql/main.go
binary: sql-to-logsql
ldflags:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.25
ARG GO_VERSION=1.26
ARG NODE_VERSION=24

FROM node:${NODE_VERSION}-bookworm as nbuilder
Expand Down
17 changes: 2 additions & 15 deletions cmd/sql-to-logsql/web/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/VictoriaMetrics/sql-to-logsql

go 1.25.5
go 1.26