From 68db734126efb80118067d5a22c5ed9ae0fc6851 Mon Sep 17 00:00:00 2001 From: Pijus Kamandulis Date: Thu, 27 Nov 2025 21:43:05 +0200 Subject: [PATCH] Upgrade go to 1.25.4 --- .github/workflows/compile-shared-libraries.yml | 2 +- .github/workflows/release.yml | 4 ++-- Makefile | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compile-shared-libraries.yml b/.github/workflows/compile-shared-libraries.yml index 6ea2c99..a14aaf7 100644 --- a/.github/workflows/compile-shared-libraries.yml +++ b/.github/workflows/compile-shared-libraries.yml @@ -18,7 +18,7 @@ jobs: uses: crazy-max/ghaction-xgo@e22d3c8b089adba750d5a74738b8e95d96f0c991 # v3.1.0 with: xgo_version: latest - go_version: 1.24.7 + go_version: 1.25.4 dest: dist pkg: sharedlibrary prefix: cosmium diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c519920..c19166a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,13 +21,13 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.24.7 + go-version: 1.25.4 - name: Cross-Compile with xgo uses: crazy-max/ghaction-xgo@e22d3c8b089adba750d5a74738b8e95d96f0c991 # v3.1.0 with: xgo_version: latest - go_version: 1.24.7 + go_version: 1.25.4 dest: sharedlibrary_dist pkg: sharedlibrary prefix: cosmium diff --git a/Makefile b/Makefile index 6f0fb65..ced8f7b 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ SERVER_LOCATION=./cmd/server SHARED_LIB_LOCATION=./sharedlibrary SHARED_LIB_OPT=-buildmode=c-shared XGO_TARGETS=linux/amd64,linux/arm64,windows/amd64,windows/arm64,darwin/amd64,darwin/arm64 -GOVERSION=1.24.7 +GOVERSION=1.25.4 DIST_DIR=dist diff --git a/go.mod b/go.mod index b4b45da..3138a63 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pikami/cosmium -go 1.24.7 +go 1.25.4 require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.20.0