From f8229c8acbb7b438c63ddbeb8548ed120f55cf17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Fri, 21 Feb 2025 16:40:15 +0100 Subject: [PATCH] Revert back to go 1.23 --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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