Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Sage
uses: einride/sage/actions/setup@master
with:
go-version: '1.23'
go-version-file: .sage/go.mod
check-latest: true

- name: Setup Node
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup Sage
uses: einride/sage/actions/setup@master
with:
go-version: '1.23'
go-version-file: .sage/go.mod
check-latest: true

- name: Make
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Sage
uses: einride/sage/actions/setup@master
with:
go-version: '1.23'
go-version-file: .sage/go.mod
check-latest: true

- name: Make
Expand Down
4 changes: 2 additions & 2 deletions .sage/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module sage

go 1.23
go 1.25.7

require go.einride.tech/sage v0.347.0
require go.einride.tech/sage v0.405.1
4 changes: 2 additions & 2 deletions .sage/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
go.einride.tech/sage v0.347.0 h1:mbbRgq/HWXps5hWgGDT2HH3tuPQfViEKPkGLHqe5w8I=
go.einride.tech/sage v0.347.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.405.1 h1:4vABEmRGSFp+TyE1noBuLIMXhuL8iQaJMqa4uYum7Vs=
go.einride.tech/sage v0.405.1/go.mod h1:k/GWZv8EP64DxdCSZt9GIYMgOCxntdfE6FTRTIzQVdE=
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sagefile := $(abspath $(cwd)/.sage/bin/sagefile)
go := $(shell command -v go 2>/dev/null)
export GOWORK ?= off
ifndef go
SAGE_GO_VERSION ?= 1.23.4
SAGE_GO_VERSION ?= 1.25.7
export GOROOT := $(abspath $(cwd)/.sage/tools/go/$(SAGE_GO_VERSION)/go)
export PATH := $(PATH):$(GOROOT)/bin
go := $(GOROOT)/bin/go
Expand All @@ -37,7 +37,7 @@ sage:

.PHONY: update-sage
update-sage: $(go)
@cd .sage && $(go) get -d go.einride.tech/sage@latest && $(go) mod tidy && $(go) run .
@cd .sage && $(go) get go.einride.tech/sage@latest && $(go) mod tidy && $(go) run .

.PHONY: clean-sage
clean-sage:
Expand Down
4 changes: 2 additions & 2 deletions proto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sagefile := $(abspath $(cwd)/../.sage/bin/sagefile)
go := $(shell command -v go 2>/dev/null)
export GOWORK ?= off
ifndef go
SAGE_GO_VERSION ?= 1.23.4
SAGE_GO_VERSION ?= 1.25.7
export GOROOT := $(abspath $(cwd)/../.sage/tools/go/$(SAGE_GO_VERSION)/go)
export PATH := $(PATH):$(GOROOT)/bin
go := $(GOROOT)/bin/go
Expand All @@ -37,7 +37,7 @@ sage:

.PHONY: update-sage
update-sage: $(go)
@cd ../.sage && $(go) get -d go.einride.tech/sage@latest && $(go) mod tidy && $(go) run .
@cd ../.sage && $(go) get go.einride.tech/sage@latest && $(go) mod tidy && $(go) run .

.PHONY: clean-sage
clean-sage:
Expand Down
Loading