Skip to content

Commit

Permalink
chore(deps): bump go.einride.tech/sage from 0.264.0 to 0.272.0 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.264.0 to 0.272.0.
- [Release notes](https://github.com/einride/sage/releases)
- [Commits](einride/sage@v0.264.0...v0.272.0)

---
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 quoral committed Mar 4, 2024
1 parent 9a4f6a6 commit c9c209a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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 go.einride.tech/backstage/.sage

go 1.20

require go.einride.tech/sage v0.264.0
require go.einride.tech/sage v0.272.0
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.264.0 h1:NuEefbHh89txKXhVLcn70y1M2dY+eJw9cjLeousZefs=
go.einride.tech/sage v0.264.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.272.0 h1:NxK2zVtsYJn9Wwp//Tz5gmQsiVwT0uXLkau5WJnnXR8=
go.einride.tech/sage v0.272.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
12 changes: 6 additions & 6 deletions cmd/backstage/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func newEntitiesListCommand() *cobra.Command {
cmd.Short = "List entities in the catalog"
filters := cmd.Flags().StringArray("filter", nil, "select only a subset of all entities")
fields := cmd.Flags().StringSlice("fields", nil, "select only parts of each entity")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
cmd.RunE = func(cmd *cobra.Command, _ []string) error {
client, err := newCatalogClient()
if err != nil {
return err
Expand Down Expand Up @@ -167,7 +167,7 @@ func newEntitiesGetByNameCommand() *cobra.Command {
namespace := cmd.Flags().String("namespace", "default", "namespace of the entity to get")
name := cmd.Flags().String("name", "", "name of the entity to get")
_ = cmd.MarkFlagRequired("name")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
cmd.RunE = func(cmd *cobra.Command, _ []string) error {
client, err := newCatalogClient()
if err != nil {
return err
Expand All @@ -192,7 +192,7 @@ func newEntitiesGetByUIDCommand() *cobra.Command {
cmd.Short = "Get an entity by its UID"
uid := cmd.Flags().String("uid", "", "UID of the entity to get")
_ = cmd.MarkFlagRequired("uid")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
cmd.RunE = func(cmd *cobra.Command, _ []string) error {
client, err := newCatalogClient()
if err != nil {
return err
Expand All @@ -215,7 +215,7 @@ func newEntitiesDeleteByUIDCommand() *cobra.Command {
cmd.Short = "Delete an entity by its UID"
uid := cmd.Flags().String("uid", "", "UID of the entity to delete")
_ = cmd.MarkFlagRequired("uid")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
cmd.RunE = func(cmd *cobra.Command, _ []string) error {
client, err := newCatalogClient()
if err != nil {
return err
Expand All @@ -234,7 +234,7 @@ func newEntitiesBatchGetByRefsCommand() *cobra.Command {
entityRefs := cmd.Flags().StringSlice("entity-refs", nil, "refs of the entities to get")
_ = cmd.MarkFlagRequired("entity-refs")
fields := cmd.Flags().StringSlice("fields", nil, "select only parts of each entity")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
cmd.RunE = func(cmd *cobra.Command, _ []string) error {
client, err := newCatalogClient()
if err != nil {
return err
Expand Down Expand Up @@ -270,7 +270,7 @@ func newEntitiesValidateCommand() *cobra.Command {
}
var count int
for _, arg := range args {
if err := filepath.WalkDir(arg, func(path string, d fs.DirEntry, err error) error {
if err := filepath.WalkDir(arg, func(path string, d fs.DirEntry, _ error) error {
if d.IsDir() {
return nil
}
Expand Down

0 comments on commit c9c209a

Please sign in to comment.