2
0

chore(ci): revert go version and remove mod tidy steps
Some checks failed
Build and Release / Create Release (push) Has been skipped
Build and Release / Unit Tests (push) Failing after 31s
Build and Release / Lint (push) Failing after 1m3s
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, macos) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, macos) (push) Has been skipped
Build and Release / Build Binary (linux/arm64) (push) Has been skipped
Build and Release / Integration Tests (PostgreSQL) (push) Has been cancelled

Revert to Go 1.25.0 with local toolchain. Remove unnecessary 'go mod tidy' steps from build workflow as dependencies should already be committed.
This commit is contained in:
2026-03-04 01:30:32 -05:00
parent 34a2c8faf0
commit bd4d53d0f8

View File

@@ -15,8 +15,8 @@ env:
GOPROXY: https://proxy.golang.org,direct
GOPRIVATE: git.marketally.com
GONOSUMDB: git.marketally.com
GOTOOLCHAIN: auto
GO_VERSION: "1.25.5"
GOTOOLCHAIN: local
GO_VERSION: "1.25.0"
NODE_VERSION: "22"
jobs:
@@ -40,9 +40,6 @@ jobs:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Tidy modules
run: go mod tidy
- name: Setup Node.js
uses: actions/setup-node@v4
with:
@@ -128,9 +125,6 @@ jobs:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Tidy modules
run: go mod tidy
- name: Setup Node.js
uses: actions/setup-node@v4
with: