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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/src/"
directory: "/"
schedule:
interval: "weekly"

Expand Down
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package(default_visibility = ["//visibility:public"])
exports_files([
"config.sh.tmpl",
"deploy.sh",
"go.mod",
])

# Gazelle uses this to build importpath attributes.
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ go_sdk.download(version = "1.26.1")
bazel_dep(name = "gazelle", version = "0.47.0", repo_name = "bazel_gazelle")

go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//src:go.mod")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(
go_deps,
"com_github_cenkalti_backoff_v4",
Expand Down
2 changes: 1 addition & 1 deletion src/go.mod → go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/googlecloudrobotics/core/src
module github.com/googlecloudrobotics/core

go 1.26.1

Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions src/BUILD.bazel

This file was deleted.

2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To re-generate Go modules dependencies run this from the top-level source
directory:

```shell
./src/gomod.sh
./gomod.sh
```

This will always download the latest stable tag of a go module. To use a
Expand Down
Loading