From f31013166956d611bc27ec3e4ad141cecda97666 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Tue, 18 Mar 2025 20:22:44 +0530 Subject: [PATCH] Update Go version to v1.24.1 --- .github/workflows/build-sanity.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- go.mod | 4 +--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-sanity.yml b/.github/workflows/build-sanity.yml index 7e143022..8ac266af 100644 --- a/.github/workflows/build-sanity.yml +++ b/.github/workflows/build-sanity.yml @@ -14,9 +14,9 @@ jobs: uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.24.1" - name: Prepare Dependencies and Build run: make dist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 283c9554..fff6d71d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,9 +20,9 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: "1.23.2" + go-version: "1.24.1" - name: Login to Docker Registry uses: docker/login-action@v2 @@ -46,7 +46,7 @@ jobs: docker version - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v4 + uses: goreleaser/goreleaser-action@v5 with: version: latest args: release --parallelism 1 --clean diff --git a/go.mod b/go.mod index e10b56b6..a3848b7d 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/knadh/listmonk -go 1.23.0 - -toolchain go1.23.5 +go 1.24.1 require ( github.com/Masterminds/sprig/v3 v3.2.3