Skip to content

NO-ISSUE: Synchronize From Upstream Repositories - #1346

Open
openshift-bot wants to merge 2 commits into
openshift:mainfrom
openshift-bot:synchronize-upstream
Open

NO-ISSUE: Synchronize From Upstream Repositories#1346
openshift-bot wants to merge 2 commits into
openshift:mainfrom
openshift-bot:synchronize-upstream

Conversation

@openshift-bot

@openshift-bot openshift-bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

The staging/ and vendor/ directories have been synchronized from the upstream repositories, pulling in the following commits:

Date Commit Author Message
2026-08-07 13:46:08 operator-framework/operator-lifecycle-manager@6415fe9 dependabot[bot] 🌱 Bump go.podman.io/image/v5 from 5.40.0 to 5.41.0 (#3886)
2026-08-07 14:11:42 operator-framework/operator-lifecycle-manager@1247251 Stanislav Jakuschevskij fix: use native gRPC probes for CatalogSource pods (#3888)

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/assign @openshift/openshift-team-operator-runtime

dependabot Bot and others added 2 commits August 8, 2026 00:08
Bumps [go.podman.io/image/v5](https://github.com/podman-container-tools/container-libs) from 5.40.0 to 5.41.0.
- [Release notes](https://github.com/podman-container-tools/container-libs/releases)
- [Commits](podman-container-tools/container-libs@image/v5.40.0...image/v5.41.0)

---
updated-dependencies:
- dependency-name: go.podman.io/image/v5
  dependency-version: 5.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Upstream-repository: operator-lifecycle-manager
Upstream-commit: 6415fe9d3ceae31af5d64733f1f54a420268b369
CatalogSource pods use exec probes that fork a
grpc_health_probe binary inside the container. Dynatrace
OneAgent injects via LD_PRELOAD into forked processes,
adding ~6s startup overhead that exceeds the 5s probe
timeout, causing CrashLoopBackOff.

Switch to Kubernetes native gRPC probes, where kubelet
calls the health endpoint directly from outside the
container.

Native gRPC probes are GA since Kubernetes 1.24.

Issue OCPBUGS-74905

Upstream-repository: operator-lifecycle-manager
Upstream-commit: 124725122b46c4f02a74aac3a92cf1dfe42f326c
@openshift-bot openshift-bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. labels Aug 8, 2026
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Aug 8, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@openshift-bot: This pull request explicitly references no jira issue.

Details

In response to this:

The staging/ and vendor/ directories have been synchronized from the upstream repositories, pulling in the following commits:

Date Commit Author Message
2026-08-07 13:46:08 operator-framework/operator-lifecycle-manager@6415fe9 dependabot[bot] 🌱 Bump go.podman.io/image/v5 from 5.40.0 to 5.41.0 (#3886)
2026-08-07 14:11:42 operator-framework/operator-lifecycle-manager@1247251 Stanislav Jakuschevskij fix: use native gRPC probes for CatalogSource pods (#3888)

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/assign @openshift/openshift-team-operator-runtime

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@coderabbitai

coderabbitai Bot commented Aug 8, 2026

Copy link
Copy Markdown

Walkthrough

The change updates Go dependency metadata and replaces grpc_health_probe exec checks with native Kubernetes gRPC probes on port 50051. Registry reconciler tests and catalog end-to-end configuration now expect the new probe actions.

Changes

Health probe migration

Layer / File(s) Summary
Dependency metadata updates
go.mod, staging/operator-lifecycle-manager/go.mod
Adds and upgrades container, cryptography, telemetry, Podman, Sigstore, and related Go dependencies.
Registry probe configuration and expectations
staging/operator-lifecycle-manager/pkg/controller/registry/reconciler/reconciler.go, staging/operator-lifecycle-manager/pkg/controller/registry/reconciler/reconciler_test.go
Configures registry readiness, liveness, and startup checks as gRPC probes on port 50051. Updates probe expectations and pod-spec hash labels.
Catalog probe configuration
staging/operator-lifecycle-manager/test/e2e/magic_catalog.go
Configures catalog readiness and liveness checks as gRPC probes on port 50051.

Estimated code review effort: 2 (Simple) | ~15 minutes

Suggested reviewers: perdasilva, tmshort, grokspawn


Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 error)

Check name Status Explanation Resolution
No-Weak-Crypto ❌ Error The PR adds reachable 3DES-CBC support: pkcs8 registers des.NewTripleDESCipher, and Sigstore calls pkcs8.ParsePKCS8PrivateKey for encrypted keys. Remove or disable 3DES-CBC support in the dependency, or use an upstream version that rejects weak ciphers; then resynchronize vendor files.
✅ Passed checks (14 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed The PR adds or removes no Ginkgo title declarations. The modified test file contains only static TestPod... functions, and magic_catalog.go contains helper methods.
Test Structure And Quality ✅ Passed The PR changes no Ginkgo test code: reconciler_test.go uses standard testing, and magic_catalog.go only changes probe construction; no It, Eventually, BeforeEach, or Expect lines changed.
Microshift Test Compatibility ✅ Passed The patch adds no Ginkgo e2e tests or test declarations; magic_catalog.go only changes existing pod probes to GRPCAction.
Single Node Openshift (Sno) Test Compatibility ✅ Passed The PR adds no new Ginkgo e2e tests; it only updates existing probe configuration and unit-test expectations, so no SNO multi-node assumption requires review.
Topology-Aware Scheduling Compatibility ✅ Passed The PR only changes CatalogSource health probes to GRPCAction and updates dependencies; scheduling fields match base, with no topology-specific constraints added.
Ote Binary Stdout Contract ✅ Passed The PR adds no stdout writes in OTE process-level code; changed application files only update gRPC probes. The sole added Printf is inside a gofuzz FuzzReduction function.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed No new Ginkgo e2e tests were added. The only e2e diff replaces exec probes with GRPCAction; the existing quay.io image reference is unchanged.
Container-Privileges ✅ Passed The PR adds no privileged, host namespace, SYS_ADMIN, or allowPrivilegeEscalation=true settings. Changed probes are GRPCAction; the e2e pod drops ALL and runs as non-root UID 1001.
No-Sensitive-Data-In-Logs ✅ Passed The PR adds no application logging. Its only new prints are gofuzz diagnostics for computed cryptographic values, with no passwords, tokens, PII, hostnames, or customer data.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly describes the primary change: synchronizing dependencies and selected files from upstream repositories.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands.

@openshift-ci
openshift-ci Bot requested review from pedjak and tmshort August 8, 2026 00:11
@openshift-ci

openshift-ci Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

Approval requirements bypassed by manually added approval.

This pull-request has been approved by: openshift-bot

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci

openshift-ci Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

Approval requirements bypassed by manually added approval.

This pull-request has been approved by: openshift-bot

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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)

46-55: 🔒 Security & Privacy | 🟠 Major | 🏗️ Heavy lift

Add SBOM, provenance, and artifact-signing controls.

  • go.mod#L46-L55 and staging/operator-lifecycle-manager/go.mod#L35-L35: Checksums are present. The root github.com/operator-framework/api requirement uses the local ./staging/api replacement, so no root checksum is required.
  • No build control produces SBOM/provenance attestations or signs artifacts with Sigstore/cosign. Add these controls and record OSV and license-compatibility results for both module graphs before merge.
🤖 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` around lines 46 - 55, Keep the existing checksum entries in go.mod
(46-55) and staging/operator-lifecycle-manager/go.mod (35-35); no checksum
change is required, and the local staging/api replacement needs no root
checksum. Add build or CI controls that generate SBOM and provenance
attestations, sign produced artifacts with Sigstore/cosign, and record OSV
vulnerability and license-compatibility results for both module graphs before
merge.

Source: Path instructions

🤖 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`:
- Around line 46-55: Keep the existing checksum entries in go.mod (46-55) and
staging/operator-lifecycle-manager/go.mod (35-35); no checksum change is
required, and the local staging/api replacement needs no root checksum. Add
build or CI controls that generate SBOM and provenance attestations, sign
produced artifacts with Sigstore/cosign, and record OSV vulnerability and
license-compatibility results for both module graphs before merge.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 70eef9ec-c866-451d-96ff-46250d57f8a8

📥 Commits

Reviewing files that changed from the base of the PR and between ebb4675 and aed0c3f.

⛔ Files ignored due to path filters (306)
  • go.sum is excluded by !**/*.sum
  • staging/operator-lifecycle-manager/go.sum is excluded by !**/*.sum
  • vendor/github.com/ProtonMail/go-crypto/AUTHORS is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/CONTRIBUTORS is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/LICENSE is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/PATENTS is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/bitcurves/bitcurve.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/brainpool/brainpool.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/brainpool/rcurve.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/eax/eax.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/eax/eax_test_vectors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/eax/random_vectors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/internal/byteutil/byteutil.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/ocb/ocb.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/ocb/random_vectors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/ocb/rfc7253_test_vectors_suite_a.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/ocb/rfc7253_test_vectors_suite_b.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/aes/keywrap/keywrap.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/armor/armor.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/armor/encode.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/canonical_text.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/ecdh/ecdh.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/ecdsa/ecdsa.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/ed25519/ed25519.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/ed448/ed448.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/eddsa/eddsa.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/elgamal/elgamal.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/errors/errors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/hash.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/algorithm/aead.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/algorithm/cipher.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/algorithm/hash.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/curve25519.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/curve_info.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/curves.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/ed25519.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/ed448.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/x448.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/encoding/encoding.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/encoding/mpi.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/internal/encoding/oid.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/key_generation.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/keys.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/keys_test_data.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/aead_config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/aead_crypter.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/aead_encrypted.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/compressed.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/config_v5.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/encrypted_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/literal.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/marker.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/notation.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/ocfb.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/one_pass_signature.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/opaque.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/packet.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/packet_sequence.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/packet_unsupported.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/padding.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/private_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/private_key_test_data.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/public_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/public_key_test_data.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/reader.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/recipient.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/signature.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/symmetric_key_encrypted.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/symmetrically_encrypted.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/symmetrically_encrypted_aead.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/symmetrically_encrypted_mdc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/userattribute.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/packet/userid.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/read.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/read_write_test_data.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/s2k/s2k.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/s2k/s2k_cache.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/s2k/s2k_config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/write.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/x25519/x25519.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ProtonMail/go-crypto/openpgp/x448/x448.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/LICENSE is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve_amd64.h is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/curve_noasm.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x25519/table.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve_amd64.h is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/curve_noasm.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/dh/x448/table.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/constants.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/curve.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/isogeny.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/point.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/scalar.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/twist.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/twistPoint.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/twistTables.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/ecc/goldilocks/twist_basemult.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/conv/conv.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/hashes.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/keccakf.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/rc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/sha3.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/sha3_s390x.s is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/shake.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/xor.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/xor_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/internal/sha3/xor_unaligned.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp_amd64.h is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp25519/fp_noasm.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp_amd64.h is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fp_noasm.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/fp448/fuzzer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/integer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/mlsbset/mlsbset.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/mlsbset/power.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/primes.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/math/wnaf.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/ed25519.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/modular.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/mult.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/point.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/pubkey.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/pubkey112.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/signapi.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed25519/tables.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed448/ed448.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/ed448/signapi.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/cloudflare/circl/sign/sign.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/Makefile is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/config/constructors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/config/pkcs11config/config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/crypto/pkcs11/common.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/gpgvault.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/keywrap/pgp/keywrapper_gpg.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.pb.go is excluded by !**/*.pb.go, !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.proto is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider_grpc.pb.go is excluded by !**/*.pb.go, !**/vendor/**, !vendor/**
  • vendor/github.com/containers/ocicrypt/utils/utils.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/google/go-containerregistry/pkg/name/registry.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options/BUILD.bazel is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/grpc-ecosystem/grpc-gateway/v2/runtime/mux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/mattn/go-runewidth/SECURITY.md is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/mattn/go-runewidth/runewidth.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/mattn/go-runewidth/runewidth_table.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/moby/sys/user/lookup_unix.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/moby/sys/user/user.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/moby/sys/user/user_fuzzer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/moby/sys/user/user_utils.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/operator-framework/operator-lifecycle-manager/pkg/controller/registry/reconciler/reconciler.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/sigstore/fulcio/pkg/certificate/extensions.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/sigstore/protobuf-specs/gen/pb-go/common/v1/sigstore_common.pb.go is excluded by !**/*.pb.go, !**/gen/**, !**/vendor/**, !vendor/**
  • vendor/github.com/sigstore/sigstore/pkg/cryptoutils/privatekey.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/ulikunitz/xz/TODO.md is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/CONTRIBUTING is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/README.md is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/UNLICENSE is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/util_aix.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/util_bsd.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/util_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/util_solaris.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/util_zos.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/writer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/writer_posix.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/cupwriter/writer_windows.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/README.md is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/bar.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/bar_filler_bar.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/bar_filler_spinner.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/bar_heap.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/bar_option.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/console_writer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/container_option.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/cwriter/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/cwriter/writer.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/cwriter/writer_windows.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/decor/moving_average.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/heap_manager.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/progress.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/proxyreader.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/vbauerster/mpb/v8/proxywriter.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/.gitignore is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/LICENSE is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/README is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/README.md is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/cipher.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/cipher_3des.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/cipher_aes.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/kdf_pbkdf2.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/kdf_scrypt.go is excluded by !**/vendor/**, !vendor/**
  • vendor/github.com/youmark/pkcs8/pkcs8.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/interceptor.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/internal/parse.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/stats_handler.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/version.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/handler.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv/client.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv/server.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv/util.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/transport.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/version.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/MIGRATION.md is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/README.md is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/attribute_group.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/doc.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/error_type.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/exception.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/rpcconv/metric.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.39.0/schema.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.40.0/rpcconv/metric.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.opentelemetry.io/otel/semconv/v1.41.0/httpconv/metric.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/copy/blob.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/copy/progress.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/copy/progress_bars.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/copy/progress_channel.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/copy/single.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/docker/docker_client.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/docker/docker_image_src.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/docker/registries_d.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/internal/image/docker_schema1.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/pkg/blobinfocache/internal/prioritize/prioritize.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/pkg/sysregistriesv2/system_registries_v2.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/signature/internal/sequoia/sequoia.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/signature/mechanism.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/signature/mechanism_openpgp.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/types/types.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/image/v5/version/version.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/archive/archive_bsd.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/archive/archive_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/fileutils/reflink_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/fileutils/reflink_unsupported.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/idtools/idtools.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/ioutils/readers.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/lockfile/lastwrite.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/mount/flags.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/meminfo.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/meminfo_freebsd.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/meminfo_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/meminfo_solaris.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/meminfo_windows.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/utimes_freebsd.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/utimes_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/utimes_unix.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/system/utimes_unsupported.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.podman.io/storage/pkg/unshare/unshare_linux.go is excluded by !**/vendor/**, !vendor/**
  • vendor/go.uber.org/zap/CHANGELOG.md is excluded by !**/vendor/**, !vendor/**
  • vendor/go.uber.org/zap/zapcore/entry.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/argon2.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/blake2b.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/blamka_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/blamka_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/blamka_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/argon2/blamka_ref.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2b.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2b_generic.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2b_ref.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/blake2x.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/blake2b/register.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/errors/errors.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/keys.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/config.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/one_pass_signature.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/packet.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/private_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/public_key.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/public_key_v3.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/reader.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/signature.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/signature_v3.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/packet/symmetric_key_encrypted.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/read.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/s2k/s2k.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/openpgp/write.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/sha3/hashes.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/sha3/legacy_hash.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/sha3/legacy_keccakf.go is excluded by !**/vendor/**, !vendor/**
  • vendor/golang.org/x/crypto/sha3/shake.go is excluded by !**/vendor/**, !vendor/**
  • vendor/modules.txt is excluded by !**/vendor/**, !vendor/**
📒 Files selected for processing (5)
  • go.mod
  • staging/operator-lifecycle-manager/go.mod
  • staging/operator-lifecycle-manager/pkg/controller/registry/reconciler/reconciler.go
  • staging/operator-lifecycle-manager/pkg/controller/registry/reconciler/reconciler_test.go
  • staging/operator-lifecycle-manager/test/e2e/magic_catalog.go

@openshift-ci

openshift-ci Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

@openshift-bot: all tests passed!

Full PR test history. Your PR dashboard.

Details

Instructions 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants