Skip to content

Commit

Permalink
chore(deps): bump go.einride.tech/sage from 0.144.0 to 0.155.1 in /.sage
Browse files Browse the repository at this point in the history
Bumps [go.einride.tech/sage](https://github.com/einride/sage) from 0.144.0 to 0.155.1.
- [Release notes](https://github.com/einride/sage/releases)
- [Commits](einride/sage@v0.144.0...v0.155.1)

---
updated-dependencies:
- dependency-name: go.einride.tech/sage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and ericwenn committed Aug 31, 2022
1 parent b260eaa commit c7e8d9a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .sage/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module sage

go 1.17

require go.einride.tech/sage v0.144.0
require go.einride.tech/sage v0.155.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.144.0 h1:lD+zQhJ6ozGoRDkbq7zMo2HCfK2izUo4OYECcEJE5pA=
go.einride.tech/sage v0.144.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.155.1 h1:OaIiIXye6dZ/M0XYbwrLDSyaM2GcrzI+qGVj2e+P1Hk=
go.einride.tech/sage v0.155.1/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@

.DEFAULT_GOAL := all

sagefile := .sage/bin/sagefile
cwd := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
sagefile := $(abspath $(cwd)/.sage/bin/sagefile)

# Setup Go.
go := $(shell command -v go 2>/dev/null)
ifndef go
SAGE_GO_VERSION ?= 1.18.4
export GOROOT := .sage/tools/go/$(SAGE_GO_VERSION)/go
export GOROOT := $(abspath $(cwd)/.sage/tools/go/$(SAGE_GO_VERSION)/go)
export PATH := $(PATH):$(GOROOT)/bin
go := $(GOROOT)/bin/go
os := $(shell uname | tr '[:upper:]' '[:lower:]')
Expand Down
5 changes: 3 additions & 2 deletions examples/proto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@

.DEFAULT_GOAL := all

sagefile := ../../.sage/bin/sagefile
cwd := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
sagefile := $(abspath $(cwd)/../../.sage/bin/sagefile)

# Setup Go.
go := $(shell command -v go 2>/dev/null)
ifndef go
SAGE_GO_VERSION ?= 1.18.4
export GOROOT := ../../.sage/tools/go/$(SAGE_GO_VERSION)/go
export GOROOT := $(abspath $(cwd)/../../.sage/tools/go/$(SAGE_GO_VERSION)/go)
export PATH := $(PATH):$(GOROOT)/bin
go := $(GOROOT)/bin/go
os := $(shell uname | tr '[:upper:]' '[:lower:]')
Expand Down

0 comments on commit c7e8d9a

Please sign in to comment.