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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- goVersion: "1.19"
GOARCH: "amd64"
SKIP_PYTHON_BINDINGS_TESTS: "0"
- goVersion: "1.20"
GOARCH: "amd64"
SKIP_PYTHON_BINDINGS_TESTS: "0"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.20
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
Expand Down
6 changes: 3 additions & 3 deletions bazel/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def jsonnet_go_dependencies(go_sdk_version = "host"):
)
go_repository(
name = "com_github_fatih_color",
build_external = "external",
importpath = "github.com/fatih/color",
sum = "h1:mRhaKNwANqRgUBGKmnI5ZxEk7QXmjQeCcuYFMX2bfcc=",
version = "v1.12.0",
build_external = "external",
)

go_repository(
Expand All @@ -47,17 +47,17 @@ def jsonnet_go_dependencies(go_sdk_version = "host"):
)
go_repository(
name = "com_github_mattn_go_colorable",
build_external = "external",
importpath = "github.com/mattn/go-colorable",
sum = "h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=",
version = "v0.1.8",
build_external = "external",
)
go_repository(
name = "com_github_mattn_go_isatty",
build_external = "external",
importpath = "github.com/mattn/go-isatty",
sum = "h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=",
version = "v0.0.12",
build_external = "external",
)
go_repository(
name = "com_github_pmezard_go_difflib",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-jsonnet

go 1.17
go 1.20

require (
github.com/fatih/color v1.12.0
Expand Down