build(deps): bump the ibm-github-dependencies group across 1 directory with 5 updates#8726
Conversation
…y with 5 updates Bumps the ibm-github-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/IBM/go-sdk-core/v5](https://github.com/IBM/go-sdk-core) | `5.21.0` | `5.21.4` | | [github.com/IBM/ibm-cos-sdk-go](https://github.com/IBM/ibm-cos-sdk-go) | `1.12.3` | `1.14.1` | | [github.com/IBM/networking-go-sdk](https://github.com/IBM/networking-go-sdk) | `0.51.11` | `0.53.4` | | [github.com/IBM/platform-services-go-sdk](https://github.com/IBM/platform-services-go-sdk) | `0.86.1` | `0.99.1` | | [github.com/IBM/vpc-go-sdk](https://github.com/IBM/vpc-go-sdk) | `0.71.1` | `0.85.0` | Updates `github.com/IBM/go-sdk-core/v5` from 5.21.0 to 5.21.4 - [Release notes](https://github.com/IBM/go-sdk-core/releases) - [Changelog](https://github.com/IBM/go-sdk-core/blob/main/CHANGELOG.md) - [Commits](IBM/go-sdk-core@v5.21.0...v5.21.4) Updates `github.com/IBM/ibm-cos-sdk-go` from 1.12.3 to 1.14.1 - [Release notes](https://github.com/IBM/ibm-cos-sdk-go/releases) - [Changelog](https://github.com/IBM/ibm-cos-sdk-go/blob/master/CHANGELOG.md) - [Commits](IBM/ibm-cos-sdk-go@v1.12.3...v1.14.1) Updates `github.com/IBM/networking-go-sdk` from 0.51.11 to 0.53.4 - [Release notes](https://github.com/IBM/networking-go-sdk/releases) - [Changelog](https://github.com/IBM/networking-go-sdk/blob/master/CHANGELOG.md) - [Commits](IBM/networking-go-sdk@v0.51.11...v0.53.4) Updates `github.com/IBM/platform-services-go-sdk` from 0.86.1 to 0.99.1 - [Release notes](https://github.com/IBM/platform-services-go-sdk/releases) - [Changelog](https://github.com/IBM/platform-services-go-sdk/blob/main/CHANGELOG.md) - [Commits](IBM/platform-services-go-sdk@v0.86.1...v0.99.1) Updates `github.com/IBM/vpc-go-sdk` from 0.71.1 to 0.85.0 - [Release notes](https://github.com/IBM/vpc-go-sdk/releases) - [Changelog](https://github.com/IBM/vpc-go-sdk/blob/master/CHANGELOG.md) - [Commits](IBM/vpc-go-sdk@v0.71.1...v0.85.0) --- updated-dependencies: - dependency-name: github.com/IBM/go-sdk-core/v5 dependency-version: 5.21.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ibm-github-dependencies - dependency-name: github.com/IBM/ibm-cos-sdk-go dependency-version: 1.14.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ibm-github-dependencies - dependency-name: github.com/IBM/networking-go-sdk dependency-version: 0.53.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ibm-github-dependencies - dependency-name: github.com/IBM/platform-services-go-sdk dependency-version: 0.99.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ibm-github-dependencies - dependency-name: github.com/IBM/vpc-go-sdk dependency-version: 0.85.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ibm-github-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
📝 WalkthroughWalkthroughThis PR updates Go module dependencies in 🚥 Pre-merge checks | ✅ 11✅ Passed checks (11 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Hi @dependabot[bot]. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: dependabot[bot] The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
go.mod (1)
152-152:⚠️ Potential issue | 🟡 MinorClarify/align the migration check for
mapstructurevsgovalidatorThe repo has no
go.modpin forgithub.com/mitchellh/mapstructure(only a residualgo.sumentry forgithub.com/mitchellh/mapstructure v1.1.2/go.mod), andgo.modcurrently only showsgithub.com/asaskevich/govalidator/v11 ... // indirect. If the goal is to fully drop the oldmitchellh/mapstructurev1 path, ensure the module graph no longer pulls it and rungo mod tidyso thego.sumentry is also removed; otherwise it may be lingering without a direct requirement.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@go.mod` at line 152, go.mod currently only lists github.com/asaskevich/govalidator/v11 as an indirect dependency while a residual go.sum entry references github.com/mitchellh/mapstructure v1, so ensure the module graph no longer pulls mitchellh/mapstructure and tidy the modules: inspect imports and any transitive requires that might pull github.com/mitchellh/mapstructure, remove or update/replace those (or add an explicit require/replace to the intended mitchellh/mapstructure v2 if you actually need it), then run go mod tidy to update go.mod/go.sum so the lingering mapstructure v1 entry is removed and the govalidator indirect entry is accurate.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@go.mod`:
- Line 152: go.mod currently only lists github.com/asaskevich/govalidator/v11 as
an indirect dependency while a residual go.sum entry references
github.com/mitchellh/mapstructure v1, so ensure the module graph no longer pulls
mitchellh/mapstructure and tidy the modules: inspect imports and any transitive
requires that might pull github.com/mitchellh/mapstructure, remove or
update/replace those (or add an explicit require/replace to the intended
mitchellh/mapstructure v2 if you actually need it), then run go mod tidy to
update go.mod/go.sum so the lingering mapstructure v1 entry is removed and the
govalidator indirect entry is accurate.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository YAML (base), Central YAML (inherited)
Review profile: CHILL
Plan: Enterprise
Run ID: 20e049df-c741-4198-b38e-88cfa9be96ac
⛔ Files ignored due to path filters (203)
go.sumis excluded by!**/*.sumvendor/github.com/IBM/go-sdk-core/v5/core/unmarshal_v2.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/go-sdk-core/v5/core/utils.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/go-sdk-core/v5/core/version.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/credentials/ibmiam/env_provider_trusted_profile.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/credentials/ibmiam/iamcreds_file_utils.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/credentials/ibmiam/trusted_profile.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/credentials/ibmiam/trusted_profile_provider.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/endpoints/defaults.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/aws/version.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/service/s3/api.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/ibm-cos-sdk-go/service/s3/s3iface/interface.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/networking-go-sdk/common/version.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/networking-go-sdk/dnsrecordsv1/dns_records_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/networking-go-sdk/transitgatewayapisv1/transit_gateway_apis_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/platform-services-go-sdk/common/version.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/platform-services-go-sdk/globaltaggingv1/global_tagging_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/platform-services-go-sdk/iamidentityv1/iam_identity_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/platform-services-go-sdk/iampolicymanagementv1/iam_policy_management_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/vpc-go-sdk/common/version.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/IBM/vpc-go-sdk/vpcv1/vpc_v1.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/.gitignoreis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/.travis.ymlis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/CODE_OF_CONDUCT.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/CONTRIBUTING.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/LICENSEis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/arrays.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/converter.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/doc.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/error.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/numerics.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/patterns.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/types.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/utils.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/validator.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/asaskevich/govalidator/wercker.ymlis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/.git-blame-ignore-revsis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/CODE_OF_CONDUCT.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/CONTRIBUTING.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/charset/charset.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/csv/parser.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/json/parser.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/archive.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/audio.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/binary.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/database.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/document.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/font.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/ftyp.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/image.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/magic.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/ms_office.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/netpbm.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/text.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/text_csv.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/video.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/magic/zip.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/markup/markup.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/internal/scan/bytes.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/mime.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/mimetype.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/supported_mimes.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/gabriel-vasile/mimetype/tree.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/.golangci.ymlis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/api.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/auth.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/doc.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/headers.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/middleware.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/parsing.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/errors/schema.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/.golangci.ymlis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/bson.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/date.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/default.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/doc.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/duration.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/errors.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/format.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/ifaces.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/mongo.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/time.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-openapi/strfmt/ulid.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/.golangci.yamlis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/baked_in.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/cache.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/doc.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/errors.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/regexes.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/struct_level.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/util.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/validator.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-playground/validator/v10/validator_instance.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/.editorconfigis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/.gitignoreis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/.golangci.yamlis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/CHANGELOG.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/LICENSEis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/decode_hooks.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/errors.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/flake.lockis excluded by!**/*.lock,!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/flake.nixis excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/internal/errors/errors.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/internal/errors/join_go1_19.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/mapstructure.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/reflect_go1_19.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/go-viper/mapstructure/v2/reflect_go1_20.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/mitchellh/mapstructure/README.mdis excluded by!vendor/**,!**/vendor/**vendor/github.com/mitchellh/mapstructure/decode_hooks.gois excluded by!vendor/**,!**/vendor/**vendor/github.com/mitchellh/mapstructure/error.gois excluded by!vendor/**,!**/vendor/**vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_writer.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/html/parse.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/html/render.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/html/token.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/server.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/server_common.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/server_wrap.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/transport.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/transport_common.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/writesched_common.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/net/http2/writesched_priority_rfc7540.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/cpu/cpu.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/cpu/cpu_linux_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/cpu/cpu_loong64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/cpu/cpu_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/mkerrors.shis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/readv_unix.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/syscall_darwin.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/syscall_linux.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/syscall_openbsd.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_386.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_amd64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_arm.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_arm64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_loong64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_mips.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_mips64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_ppc.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_s390x.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_linux.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.sis excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_386.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_arm.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_mips.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_386.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_amd64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_arm.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_arm64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_loong64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_mips.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_mips64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_ppc.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_s390x.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/windows/syscall_windows.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/windows/types_windows.gois excluded by!vendor/**,!**/vendor/**vendor/golang.org/x/sys/windows/zsyscall_windows.gois excluded by!vendor/**,!**/vendor/**vendor/modules.txtis excluded by!vendor/**,!**/vendor/**
📒 Files selected for processing (1)
go.mod
|
@dependabot[bot]: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
The background agent confirmed the details and added one key finding: My analysis report above is already complete and accurate. The report has been delivered with the exact output format requested. |
Bumps the ibm-github-dependencies group with 5 updates in the / directory:
5.21.05.21.41.12.31.14.10.51.110.53.40.86.10.99.10.71.10.85.0Updates
github.com/IBM/go-sdk-core/v5from 5.21.0 to 5.21.4Release notes
Sourced from github.com/IBM/go-sdk-core/v5's releases.
Changelog
Sourced from github.com/IBM/go-sdk-core/v5's changelog.
Commits
18af041chore(release): 5.21.4 release notes [skip ci]6ea46d7Update version 5.21.3 -> 5.21.4 [skip ci]8eedd89fix: correct inline golangci-lint error (#272)77b55c5chore(release): 5.21.3 release notes [skip ci]af7ab7eUpdate version 5.21.2 -> 5.21.3 [skip ci]3f6596efix(deps): bump sys dependency to avoid CVE (#270)2d33f25build: switch mend config (#269)c219111build: add .whitesource configuration file (#255)258cf17chore: clarify the usage of the credentials env file (#268)4929e1bbuild: exclude some gosec rules from golangci-lint (#265)Updates
github.com/IBM/ibm-cos-sdk-gofrom 1.12.3 to 1.14.1Release notes
Sourced from github.com/IBM/ibm-cos-sdk-go's releases.
Changelog
Sourced from github.com/IBM/ibm-cos-sdk-go's changelog.
Commits
ccff342Release 1.14.15289a3fRelease 1.14.0f2a5cdbRelease 1.13.02c852eaRelease 1.12.4Updates
github.com/IBM/networking-go-sdkfrom 0.51.11 to 0.53.4Release notes
Sourced from github.com/IBM/networking-go-sdk's releases.
... (truncated)
Changelog
Sourced from github.com/IBM/networking-go-sdk's changelog.
... (truncated)
Commits
91c4cb4chore(release): 0.53.4 [skip ci]4cc6747Update version 0.53.3 -> 0.53.4 [skip ci]6e207beMerge pull request #299 from IBM/fix-logpush-issue1937336fix(logpush): remove incorrect required validation from optional fieldsf3496d3test(logpush): add integration test for custom HTTP destinationd0873e5Merge pull request #298 from IBM/revert-297-fix-logpush-issuec82ea91Revert "fix(logpush): Remove incorrect required validation from optional fields"82ae48bMerge pull request #297 from IBM/fix-logpush-issuefe1ecaagit commit -m "test(logpush): add integration test for custom HTTP destinationffd16b0git commit -m "fix(logpush): Fix optional field validation for custom HTTP de...Updates
github.com/IBM/platform-services-go-sdkfrom 0.86.1 to 0.99.1Release notes
Sourced from github.com/IBM/platform-services-go-sdk's releases.
... (truncated)
Changelog
Sourced from github.com/IBM/platform-services-go-sdk's changelog.
... (truncated)
Commits
1d49427chore(release): 0.99.1 release notes [skip ci]cc5a257Update version 0.99.0 -> 0.99.1 [skip ci]a08b7f6fix(IAM Identity): consistent list of CR types (#450)2332d82chore(release): 0.99.0 release notes [skip ci]1cb8dd9Update version 0.98.0 -> 0.99.0 [skip ci]be5979cfeat(Partner Center Sell): extending IAM and Deployment objects with new para...cbd25a3chore(release): 0.98.0 release notes [skip ci]8f836aeUpdate version 0.97.5 -> 0.98.0 [skip ci]a87c38efeat(IAM Identity): add PowerVS compute resource type support (#448)7ece7d6chore(release): 0.97.5 release notes [skip ci]Updates
github.com/IBM/vpc-go-sdkfrom 0.71.1 to 0.85.0Release notes
Sourced from github.com/IBM/vpc-go-sdk's releases.
... (truncated)
Commits
76bcd21feat(spec): update the sdk to the api spec version 2026-06-09 (#160)54d78a1feat(spec): update the sdk to the api spec version 2026-06-02 (#159)a61c74dupdated the ci to include version check (#158)60575b8feat(spec): update the sdk to the api spec version 2026-04-14 (#157)c6eb9a0feat(spec): update the sdk to the api spec version 2026-04-14 (#156)669f543feat(spec): update the sdk to the api spec version 2026-04-07 (#155)652de7efeat(spec): update the sdk to the api spec version 2026-04-07 (#154)0b35161feat(spec): update the sdk to the api spec version 2026-03-24 (#153)1e1c334feat(spec): update the sdk to the api spec version 2026-01-27 (#151)7617751feat(spec): update the sdk to the api spec version 2026-01-20 (#150)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsSummary by CodeRabbit
Chores