diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb51a9e..7e73915 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: - master env: - GO_VERSION: "~1.24.0" + GO_VERSION: "~1.23" jobs: # Runs Golangci-lint on the source code diff --git a/Dockerfile b/Dockerfile index 050c75a..3dd97a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.0 AS builder +FROM golang:1.23.6 AS builder ENV GOPATH="/go" WORKDIR /go/src/github.com/kovetskiy/mark COPY / . diff --git a/go.mod b/go.mod index 83d82a9..8fda39e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kovetskiy/mark -go 1.24 +go 1.23 require ( github.com/bmatcuk/doublestar/v4 v4.8.1