From b1f1c81fc75d8409bdd385628c22f8e4c842e750 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 14:10:50 +0000 Subject: [PATCH] chore(deps): bump go.einride.tech/sage from 0.275.1 to 0.277.0 in /.sage Bumps [go.einride.tech/sage](https://github.com/einride/sage) from 0.275.1 to 0.277.0. - [Release notes](https://github.com/einride/sage/releases) - [Commits](https://github.com/einride/sage/compare/v0.275.1...v0.277.0) --- updated-dependencies: - dependency-name: go.einride.tech/sage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .sage/go.mod | 2 +- .sage/go.sum | 4 ++-- .sage/sagefile.go | 8 +------- Makefile | 4 ---- 4 files changed, 4 insertions(+), 14 deletions(-) diff --git a/.sage/go.mod b/.sage/go.mod index 70637de0..1e1ac7f2 100644 --- a/.sage/go.mod +++ b/.sage/go.mod @@ -2,4 +2,4 @@ module sage go 1.17 -require go.einride.tech/sage v0.275.1 +require go.einride.tech/sage v0.277.0 diff --git a/.sage/go.sum b/.sage/go.sum index 2d3b41d8..c28edef3 100644 --- a/.sage/go.sum +++ b/.sage/go.sum @@ -1,2 +1,2 @@ -go.einride.tech/sage v0.275.1 h1:Gph2Hd2dKhyqOc9KXjlOM0q2YAwZbQMmIDkP5jJHDMA= -go.einride.tech/sage v0.275.1/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ= +go.einride.tech/sage v0.277.0 h1:Sp+ofjuCUSDovAaVeUM2aIrDq7SE6iF8Yg0ZnqeDnkU= +go.einride.tech/sage v0.277.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ= diff --git a/.sage/sagefile.go b/.sage/sagefile.go index 52ba3b08..8893f0b2 100644 --- a/.sage/sagefile.go +++ b/.sage/sagefile.go @@ -9,7 +9,6 @@ import ( "go.einride.tech/sage/tools/sggit" "go.einride.tech/sage/tools/sggo" "go.einride.tech/sage/tools/sggolangcilint" - "go.einride.tech/sage/tools/sggoreview" "go.einride.tech/sage/tools/sgmdformat" "go.einride.tech/sage/tools/sgyamlfmt" ) @@ -30,7 +29,7 @@ func main() { func All(ctx context.Context) error { sg.Deps(ctx, ConvcoCheck, FormatMarkdown, FormatYAML, Proto.All) - sg.Deps(ctx, GoLint, GoReview, GoTest) + sg.Deps(ctx, GoLint, GoTest) sg.SerialDeps(ctx, GoModTidy, GitVerifyNoDiff) return nil } @@ -55,11 +54,6 @@ func GoLint(ctx context.Context) error { return sggolangcilint.Run(ctx) } -func GoReview(ctx context.Context) error { - sg.Logger(ctx).Println("reviewing Go files...") - return sggoreview.Command(ctx, "-c", "1", "./...").Run() -} - func GoModTidy(ctx context.Context) error { sg.Logger(ctx).Println("tidying Go module files...") return sg.Command(ctx, "go", "mod", "tidy", "-v").Run() diff --git a/Makefile b/Makefile index 3f5121c7..8cb19383 100644 --- a/Makefile +++ b/Makefile @@ -71,10 +71,6 @@ go-lint: $(sagefile) go-mod-tidy: $(sagefile) @$(sagefile) GoModTidy -.PHONY: go-review -go-review: $(sagefile) - @$(sagefile) GoReview - .PHONY: go-test go-test: $(sagefile) @$(sagefile) GoTest