diff --git a/.github/workflows/compile-shared-libraries.yml b/.github/workflows/compile-shared-libraries.yml index 0891f52..da06d54 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@acf46aa99b919eb9ef6bba89dfd13bafa680667f # v3.2.0 with: xgo_version: latest - go_version: 1.25.4 + go_version: 1.25.1 dest: dist pkg: sharedlibrary prefix: cosmium diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2240b35..3a2f843 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.25.4 + go-version: 1.25.1 - name: Cross-Compile with xgo uses: crazy-max/ghaction-xgo@acf46aa99b919eb9ef6bba89dfd13bafa680667f # v3.2.0 with: xgo_version: latest - go_version: 1.25.4 + go_version: 1.25.1 dest: sharedlibrary_dist pkg: sharedlibrary prefix: cosmium diff --git a/Makefile b/Makefile index ced8f7b..64a7929 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.25.4 +GOVERSION=1.25.1 DIST_DIR=dist diff --git a/go.mod b/go.mod index 3138a63..3461f55 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pikami/cosmium -go 1.25.4 +go 1.25.1 require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.20.0