Skip to content

chore(deps): update module go.yaml.in/yaml/v2 to v3#103

Open
red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x
Open

chore(deps): update module go.yaml.in/yaml/v2 to v3#103
red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x

Conversation

@red-hat-konflux
Copy link
Copy Markdown
Contributor

@red-hat-konflux red-hat-konflux Bot commented Mar 2, 2026

This PR contains the following updates:

Package Change Age Confidence
go.yaml.in/yaml/v2 v2.4.3v3.0.4 age confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

yaml/go-yaml (go.yaml.in/yaml/v2)

v3.0.4

Compare Source

v3.0.3

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.4.4

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Mar 2, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Updated go.mod indirect dependencies: added gopkg.in/yaml.v2 v2.4.0 while retaining gopkg.in/yaml.v3 v3.0.1 as an indirect entry. No source code, exported APIs, or other module metadata were changed.

Changes

Cohort / File(s) Summary
Go module file
go.mod
Modified indirect dependency entries: added gopkg.in/yaml.v2 v2.4.0 and preserved gopkg.in/yaml.v3 v3.0.1 (net +1/-1 line change). No other require or module directives edited.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title claims to update go.yaml.in/yaml/v2 to v3, but the raw summary shows v2.4.0 while the description references v3.0.4, creating ambiguity about the actual version change. Clarify the title to accurately reflect the actual version change (e.g., 'update gopkg.in/yaml/v2 to v3.0.4') and ensure consistency across title, description, and actual changes.
✅ Passed checks (2 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Description check ✅ Passed The PR description accurately documents a dependency version update from v2.4.3 to v3.0.4 for go.yaml.in/yaml/v2, which aligns with the actual changes shown in go.mod.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x

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

@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed Mar 14, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 14, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch March 14, 2026 17:29
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 Mar 14, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 14, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 2 times, most recently from 924f0ba to 5146c71 Compare March 14, 2026 21:22
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

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)

61-61: ⚠️ Potential issue | 🔴 Critical

PR objective not accomplished: go.yaml.in/yaml/v2 was not updated to v3.

The PR claims to update go.yaml.in/yaml/v2 from v2.4.3 to v3.0.4, but the dependency graph confirms go.yaml.in/yaml/v2@v2.4.3 remains unchanged. No go.yaml.in/yaml/v3 exists in the dependency tree. The PR does not accomplish its stated objective.

(Note: gopkg.in/yaml.v3 is a separate package and is already present; the PR appears to conflate these two different YAML packages.)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@go.mod` at line 61, The go.mod still lists "go.yaml.in/yaml/v2 v2.4.3" so the
PR did not actually upgrade to v3; replace the v2 module requirement with the
correct v3 module and update code imports accordingly by changing any import
paths that reference "go.yaml.in/yaml/v2" to "go.yaml.in/yaml/v3" (and ensure
you do NOT confuse this with "gopkg.in/yaml.v3" which is a different package);
update the go.mod require line to reference go.yaml.in/yaml/v3@v3.0.4 (or run
the equivalent go get) and run go mod tidy to refresh the dependency graph.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@go.mod`:
- Line 61: The go.mod still lists "go.yaml.in/yaml/v2 v2.4.3" so the PR did not
actually upgrade to v3; replace the v2 module requirement with the correct v3
module and update code imports accordingly by changing any import paths that
reference "go.yaml.in/yaml/v2" to "go.yaml.in/yaml/v3" (and ensure you do NOT
confuse this with "gopkg.in/yaml.v3" which is a different package); update the
go.mod require line to reference go.yaml.in/yaml/v3@v3.0.4 (or run the
equivalent go get) and run go mod tidy to refresh the dependency graph.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 9da08558-39b7-4fc1-98fd-6f7eca8fb46d

📥 Commits

Reviewing files that changed from the base of the PR and between 924f0ba and 5146c71.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (1)
  • go.mod

@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 2 times, most recently from 5146c71 to 37fa3e1 Compare March 31, 2026 17:16
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 31, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 Apr 1, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Apr 1, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 3 times, most recently from 02d8638 to 11046c0 Compare April 2, 2026 21:35
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed Apr 12, 2026
@red-hat-konflux red-hat-konflux Bot closed this Apr 12, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 Apr 12, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Apr 12, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 2 times, most recently from 11046c0 to b9c7221 Compare April 12, 2026 21:20
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed Apr 23, 2026
@red-hat-konflux red-hat-konflux Bot closed this Apr 23, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 Apr 23, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Apr 23, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 2 times, most recently from b9c7221 to 53b6781 Compare April 23, 2026 05:33
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed May 2, 2026
@red-hat-konflux red-hat-konflux Bot closed this May 2, 2026
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update module go.yaml.in/yaml/v2 to v3 - autoclosed chore(deps): update module go.yaml.in/yaml/v2 to v3 May 2, 2026
@red-hat-konflux red-hat-konflux Bot reopened this May 2, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/go.yaml.in-yaml-v2-3.x branch 2 times, most recently from 53b6781 to cbcee82 Compare May 2, 2026 13:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants