Skip to content

build(deps): bump the all group across 1 directory with 23 updates#8018

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/all-2517571765
Open

build(deps): bump the all group across 1 directory with 23 updates#8018
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/all-2517571765

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2026

Bumps the all group with 16 updates in the / directory:

Package From To
code.cloudfoundry.org/bytefmt 0.35.0 0.67.0
github.com/BurntSushi/toml 1.5.0 1.6.0
github.com/aws/aws-sdk-go-v2 1.38.1 1.41.5
github.com/emicklei/proto 1.14.0 1.14.3
github.com/getsentry/sentry-go 0.31.2-0.20250102155933-f2d4348b0508 0.44.1
github.com/gookit/color 1.5.4 1.6.0
github.com/hashicorp/go-getter 1.8.1 1.8.5
github.com/hashicorp/hcl/v2 2.23.0 2.24.0
github.com/hashicorp/terraform-json 0.24.0 0.27.2
github.com/mackerelio/go-osstat 0.2.5 0.2.7
github.com/moby/buildkit 0.26.3 0.28.1
github.com/rs/zerolog 1.34.0 1.35.0
github.com/spf13/cobra 1.10.1 1.10.2
github.com/tdewolff/minify/v2 2.23.1 2.24.11
helm.sh/helm/v3 3.19.4 3.20.1
mvdan.cc/sh/v3 3.11.0 3.13.0

Updates code.cloudfoundry.org/bytefmt from 0.35.0 to 0.67.0

Commits

Updates github.com/BurntSushi/toml from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.6.0

TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

Also two small fixes:

  • Encode large floats as exponent syntax so that round-tripping things like 5e+22 is correct.

  • Using duplicate array keys would not give an error:

    arr = [1]
    arr = [2]
    

    This will now correctly give a "Key 'arr' has already been defined" error.

Commits
  • 5253492 Enable TOML 1.1 by default (#457)
  • e954445 Reject duplicate arrays (#455)
  • 6b16cbd Update toml-test test cases from upstream (#456)
  • 011fa2b Ensure constant format strings in wf calls
  • 4b439bf Remove itemNil
  • a473c12 Add test for out of range float64
  • b535ff8 Add some boring tests for lex.go
  • 6011ef0 Remove unreachable condition in lexTableNameStart
  • c8ca9e6 Remove unreachable condition
  • 1121f81 Make tomlv read from stdin
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.38.1 to 1.41.5

Commits

Updates github.com/emicklei/proto from 1.14.0 to 1.14.3

Changelog

Sourced from github.com/emicklei/proto's changelog.

v1.14.3 (2026-02-04)

  • handle double slash in single quotes (#152) (thanks AriehSchneier)
  • Handle comments at the end of an array (#151) (thanks AriehSchneier)

v1.14.2 (2025-06-18)

  • fix parsing options for extensions (ISSUE #150)

v1.14.1 (2025-04-29)

  • fix option name with brackets (ISSUE #148)
Commits

Updates github.com/getsentry/sentry-go from 0.31.2-0.20250102155933-f2d4348b0508 to 0.44.1

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.44.1

[!NOTE]
v0.44.0 had to be released as v0.44.1 due to a technical issue.

New Features ✨

  • Add RemoveAttribute api on the scope. by @​giortzisg in #1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #1203
  • Add support for client reports by @​giortzisg in #1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #1210
  • Add the option to set attributes on the scope by @​giortzisg in #1208

Bug Fixes 🐛

Internal Changes 🔧

Ai

Deps

Other

... (truncated)

Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.44.1

[!NOTE]
The v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1

New Features ✨

  • Add RemoveAttribute api on the scope. by @​giortzisg in #1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #1203
  • Add support for client reports by @​giortzisg in #1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #1210
  • Add the option to set attributes on the scope by @​giortzisg in #1208

Bug Fixes 🐛

Internal Changes 🔧

Ai

Deps

... (truncated)

Commits

Updates github.com/google/pprof from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20260302011040-a15ffb7f9dcc

Commits

Updates github.com/gookit/color from 1.5.4 to 1.6.0

Release notes

Sourced from github.com/gookit/color's releases.

v1.6.0

Change Log

Fixed

Feature

Update

Other

... (truncated)

Commits
  • 0b1dc4c ✅ demo: update the examples deps and some codes
  • fa47891 ⬆️ dep: upgrade gookit/assert to v0.1.1, update some tests
  • d95f213 ✨ feat: add new convert func: HSVToRGB, RGBToHSV
  • 173325a 👔 up: update detect env, use internal Level* instead of the terminfo....
  • c5db0d0 👔 up: remove deprecated var isLikeInCmd, update some tests
  • f46f52e 🔥 chore: remove any.go, merge printer.go to quickstart.go
  • cc45966 🎨 chore: update some go file code style
  • e532935 Optimize RenderCode performance with fast paths for string arguments (#110)
  • f14a7b8 📝 chore: update some code style and some tests
  • 6de7584 Fix race condition in Theme.Tips method when called concurrently (#109)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-getter from 1.8.1 to 1.8.5

Release notes

Sourced from github.com/hashicorp/go-getter's releases.

v1.8.5

What's Changed

NOTES:

Binary Distribution Update: To streamline our release process and align with other HashiCorp tools, all release binaries will now be published exclusively to the official HashiCorp release site. We will no longer attach release assets to GitHub Releases.

New Contributors

Full Changelog: hashicorp/go-getter@v1.8.4...v1.8.5

v1.8.4

What's Changed

... (truncated)

Commits
  • c56e01f sec: bump go and xrepos + redact aws tokens in url (#604)
  • b83a3c7 [chore] : Bump the actions group with 2 updates (#600)
  • 90c7d9c Prepare go-getter for v1.8.5 release (#597)
  • 09c58f4 Merge pull request #599 from hashicorp/chore/upgrade-otel
  • 93c75aa chore: upgrade OpenTelemetry dependencies to v1.40.0
  • d567899 Merge pull request #595 from hashicorp/dependabot/github_actions/actions-be91...
  • 4d3358c fix: remove checkout action from set-product-version job (#598)
  • b9c8eab [chore] : Bump the go group with 3 updates (#596)
  • 2ec0046 [chore] : Bump the actions group with 4 updates
  • 8fa22a6 Merge pull request #594 from hashicorp/fix-crt-build-path
  • Additional commits viewable in compare view

Updates github.com/hashicorp/hcl/v2 from 2.23.0 to 2.24.0

Release notes

Sourced from github.com/hashicorp/hcl/v2's releases.

v2.24.0

Enhancements

  • Add support for decoding block and attribute source ranges when using gohcl. (#703)
  • hclsyntax: Detect and reject invalid nested splat result. (#724)

Bugs Fixed

  • Correct handling of unknown objects in Index function. (#763)
Changelog

Sourced from github.com/hashicorp/hcl/v2's changelog.

v2.24.0 (July 7, 2025)

Enhancements

  • Add support for decoding block and attribute source ranges when using gohcl. (#703)
  • hclsyntax: Detect and reject invalid nested splat result. (#724)

Bugs Fixed

  • Correct handling of unknown objects in Index function. (#763)
Commits
  • 6b50680 Update CHANGELOG.md (#764)
  • 77ef278 ops: handle unknown objects correctly when looking up by index (#763)
  • dfa124f [Compliance] - PR Template Changes Required (#761)
  • 6b5c4c2 fix errors thrown by errcheck linter (#755)
  • 61bd79d suppress and fix lint errors by unused (#754)
  • 8b8cb9c build(deps): bump golangci/golangci-lint-action
  • aa4e447 build(deps): bump actions/setup-go
  • 7244363 Update go-cty to latest (#749)
  • b4e27ae test_suite: refactor schema validation of diagnostic file range, pos (#750)
  • 314d236 fix staticcheck lint errors
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-json from 0.24.0 to 0.27.2

Release notes

Sourced from github.com/hashicorp/terraform-json's releases.

v0.27.2

NOTES / BUG FIXES

  • UnmarshalLogMessage to use json.Number (instead of default float64) (#178)
    • This avoids precision related problems when decoding numbers in JSON data. This would impact only 0.27.1 consumers.

v0.27.1

What's Changed

ENHANCEMENTS

Full Changelog: hashicorp/terraform-json@v0.27.0...v0.27.1

v0.27.0

What's Changed

ENHANCEMENTS

INTERNAL

New Contributors

Full Changelog: hashicorp/terraform-json@v0.26.0...v0.27.0

v0.26.0

ENHANCEMENTS:

INTERNAL:

New Contributors

... (truncated)

Commits
  • ef5e0b8 UnmarshalLogMessage to use json.Number (#178)
  • 3fe6fb2 Replace json.RawMessage for list log messages (#177)
  • 739a592 actions: remove action types from action schema (#175)
  • 2eaedbe tf query: add identity version for the list_resource_found message (#176)
  • 2fd2922 Merge pull request #172 from hashicorp/mutahhir/add-action-invocation
  • b539674 Add ConfigUnknown field
  • 806b1a6 Fix tests after type change
  • 23522f3 Change ConfigValues and ConfigSensitive to interfaces for redaction
  • dd0e457 Remove Action Invocation as a Resource Mode
  • 4643c0f format plan.json for test
  • Additional commits viewable in compare view

Updates github.com/mackerelio/go-osstat from 0.2.5 to 0.2.7

Release notes

Sourced from github.com/mackerelio/go-osstat's releases.

v0.2.7

What's Changed

Full Changelog: mackerelio/go-osstat@v0.2.6...v0.2.7

v0.2.6

What's Changed

Full Changelog: mackerelio/go-osstat@v0.2.5...v0.2.6

Commits
  • 3faba1c Merge pull request #82 from mackerelio/dependabot/go_modules/golang.org/x/sys...
  • d0b3e2c Bump golang.org/x/sys from 0.41.0 to 0.42.0
  • 540c3c7 Merge pull request #80 from mackerelio/dependabot/github_actions/mackerelio/w...
  • cc037b1 Bump mackerelio/workflows/.github/workflows/go-test.yml
  • 0bd6904 Merge pull request #79 from mackerelio/dependabot/github_actions/mackerelio/w...
  • 9c260fb Merge pull request #81 from mackerelio/dependabot/github_actions/mackerelio/w...
  • edcd9c1 Bump mackerelio/workflows/.github/workflows/go-lint.yml
  • 7596564 Bump mackerelio/workflows/.github/workflows/setup-go-matrix.yml
  • 890c54b Merge pull request #78 from mackerelio/dependabot/go_modules/golang.org/x/sys...

Bumps the all group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [code.cloudfoundry.org/bytefmt](https://github.com/cloudfoundry/bytefmt) | `0.35.0` | `0.67.0` |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.5.0` | `1.6.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.1` | `1.41.5` |
| [github.com/emicklei/proto](https://github.com/emicklei/proto) | `1.14.0` | `1.14.3` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.31.2-0.20250102155933-f2d4348b0508` | `0.44.1` |
| [github.com/gookit/color](https://github.com/gookit/color) | `1.5.4` | `1.6.0` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.8.1` | `1.8.5` |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.23.0` | `2.24.0` |
| [github.com/hashicorp/terraform-json](https://github.com/hashicorp/terraform-json) | `0.24.0` | `0.27.2` |
| [github.com/mackerelio/go-osstat](https://github.com/mackerelio/go-osstat) | `0.2.5` | `0.2.7` |
| [github.com/moby/buildkit](https://github.com/moby/buildkit) | `0.26.3` | `0.28.1` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.34.0` | `1.35.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |
| [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) | `2.23.1` | `2.24.11` |
| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.19.4` | `3.20.1` |
| [mvdan.cc/sh/v3](https://github.com/mvdan/sh) | `3.11.0` | `3.13.0` |



Updates `code.cloudfoundry.org/bytefmt` from 0.35.0 to 0.67.0
- [Release notes](https://github.com/cloudfoundry/bytefmt/releases)
- [Commits](cloudfoundry/bytefmt@v0.35.0...v0.67.0)

Updates `github.com/BurntSushi/toml` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.5.0...v1.6.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.1 to 1.41.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.38.1...v1.41.5)

Updates `github.com/emicklei/proto` from 1.14.0 to 1.14.3
- [Changelog](https://github.com/emicklei/proto/blob/master/CHANGES.md)
- [Commits](emicklei/proto@v1.14.0...v1.14.3)

Updates `github.com/getsentry/sentry-go` from 0.31.2-0.20250102155933-f2d4348b0508 to 0.44.1
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-go/commits/v0.44.1)

Updates `github.com/google/pprof` from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20260302011040-a15ffb7f9dcc
- [Commits](https://github.com/google/pprof/commits)

Updates `github.com/gookit/color` from 1.5.4 to 1.6.0
- [Release notes](https://github.com/gookit/color/releases)
- [Commits](gookit/color@v1.5.4...v1.6.0)

Updates `github.com/hashicorp/go-getter` from 1.8.1 to 1.8.5
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Commits](hashicorp/go-getter@v1.8.1...v1.8.5)

Updates `github.com/hashicorp/hcl/v2` from 2.23.0 to 2.24.0
- [Release notes](https://github.com/hashicorp/hcl/releases)
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md)
- [Commits](hashicorp/hcl@v2.23.0...v2.24.0)

Updates `github.com/hashicorp/terraform-json` from 0.24.0 to 0.27.2
- [Release notes](https://github.com/hashicorp/terraform-json/releases)
- [Commits](hashicorp/terraform-json@v0.24.0...v0.27.2)

Updates `github.com/mackerelio/go-osstat` from 0.2.5 to 0.2.7
- [Release notes](https://github.com/mackerelio/go-osstat/releases)
- [Commits](mackerelio/go-osstat@v0.2.5...v0.2.7)

Updates `github.com/moby/buildkit` from 0.26.3 to 0.28.1
- [Release notes](https://github.com/moby/buildkit/releases)
- [Commits](moby/buildkit@v0.26.3...v0.28.1)

Updates `github.com/rs/zerolog` from 1.34.0 to 1.35.0
- [Commits](rs/zerolog@v1.34.0...v1.35.0)

Updates `github.com/spf13/cobra` from 1.10.1 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.10.1...v1.10.2)

Updates `github.com/tdewolff/minify/v2` from 2.23.1 to 2.24.11
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](tdewolff/minify@v2.23.1...v2.24.11)

Updates `github.com/zclconf/go-cty` from 1.16.2 to 1.16.4
- [Release notes](https://github.com/zclconf/go-cty/releases)
- [Changelog](https://github.com/zclconf/go-cty/blob/main/CHANGELOG.md)
- [Commits](zclconf/go-cty@v1.16.2...v1.16.4)

Updates `golang.org/x/net` from 0.47.0 to 0.52.0
- [Commits](golang/net@v0.47.0...v0.52.0)

Updates `golang.org/x/text` from 0.31.0 to 0.35.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.31.0...v0.35.0)

Updates `helm.sh/helm/v3` from 3.19.4 to 3.20.1
- [Release notes](https://github.com/helm/helm/releases)
- [Commits](helm/helm@v3.19.4...v3.20.1)

Updates `mvdan.cc/sh/v3` from 3.11.0 to 3.13.0
- [Release notes](https://github.com/mvdan/sh/releases)
- [Changelog](https://github.com/mvdan/sh/blob/master/CHANGELOG.md)
- [Commits](mvdan/sh@v3.11.0...v3.13.0)

Updates `k8s.io/api` from 0.34.2 to 0.35.1
- [Commits](kubernetes/api@v0.34.2...v0.35.1)

Updates `k8s.io/apimachinery` from 0.34.2 to 0.35.1
- [Commits](kubernetes/apimachinery@v0.34.2...v0.35.1)

Updates `k8s.io/client-go` from 0.34.2 to 0.35.1
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.34.2...v0.35.1)

---
updated-dependencies:
- dependency-name: code.cloudfoundry.org/bytefmt
  dependency-version: 0.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/emicklei/proto
  dependency-version: 1.14.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20260302011040-a15ffb7f9dcc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/gookit/color
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/hashicorp/go-getter
  dependency-version: 1.8.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-version: 2.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/hashicorp/terraform-json
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/mackerelio/go-osstat
  dependency-version: 0.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/moby/buildkit
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/rs/zerolog
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/tdewolff/minify/v2
  dependency-version: 2.24.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/zclconf/go-cty
  dependency-version: 1.16.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: helm.sh/helm/v3
  dependency-version: 3.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: mvdan.cc/sh/v3
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/api
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/client-go
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 27, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 27, 2026 23:45
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants