Skip to content

Migrate skip-author-associations test to canonical YAML import and demote deprecated module#35090

Closed
Copilot wants to merge 2 commits into
mainfrom
copilot/deep-report-migrate-gopkg-in-yaml-v3
Closed

Migrate skip-author-associations test to canonical YAML import and demote deprecated module#35090
Copilot wants to merge 2 commits into
mainfrom
copilot/deep-report-migrate-gopkg-in-yaml-v3

Conversation

Copilot AI commented May 27, 2026

Copy link
Copy Markdown
Contributor

The repo policy says gopkg.in/yaml.v3 has been migrated to go.yaml.in/yaml/v3, but one workflow test still imported the deprecated path and kept it effectively direct in module metadata. This change aligns the test import and module graph with that policy.

  • Import path alignment

    • Updated /pkg/workflow/skip_author_associations_test.go to use the canonical YAML module path.
  • Dependency graph cleanup

    • Ran module tidy so gopkg.in/yaml.v3 is no longer a direct requirement in go.mod and is retained only as indirect/transitive where needed.
  • Resulting diff shape

    // pkg/workflow/skip_author_associations_test.go
    - "gopkg.in/yaml.v3"
    + "go.yaml.in/yaml/v3"
    # go.mod
    - gopkg.in/yaml.v3 v3.0.1
    + gopkg.in/yaml.v3 v3.0.1 // indirect

Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com>
Copilot AI changed the title [WIP] Migrate gopkg.in/yaml.v3 to canonical go.yaml.in/yaml/v3 Migrate skip-author-associations test to canonical YAML import and demote deprecated module May 27, 2026
Copilot AI requested a review from gh-aw-bot May 27, 2026 01:30
@pelikhan pelikhan closed this May 27, 2026
@github-actions github-actions Bot deleted the copilot/deep-report-migrate-gopkg-in-yaml-v3 branch June 3, 2026 03:03
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.

[deep-report] Migrate gopkg.in/yaml.v3 to canonical go.yaml.in/yaml/v3 in skip_author_associations_test.go and demote from direct dep

3 participants