From 26fe8b4d85cd979147662811582d95d10e2abc0c Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Mon, 13 Apr 2026 12:17:25 +0200 Subject: [PATCH] Inline indirect gopkg.in/yaml.v3 dependency PR #4353 migrated direct imports to go.yaml.in/yaml/v3. PR #4400 added palantir/pkg/yamlpatch a week later, reintroducing gopkg.in/yaml.v3 as a standalone indirect require line. Move it into the grouped indirect block via go mod tidy. Co-authored-by: Isaac --- go.mod | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/go.mod b/go.mod index ae9f74fb87d..08308cf69ac 100644 --- a/go.mod +++ b/go.mod @@ -44,8 +44,6 @@ require ( gopkg.in/ini.v1 v1.67.1 // Apache 2.0 ) -require gopkg.in/yaml.v3 v3.0.1 // indirect - // Dependencies for experimental SSH commands require github.com/tailscale/hujson v0.0.0-20250605163823-992244df8c5a // BSD-3-Clause @@ -107,4 +105,5 @@ require ( google.golang.org/genproto/googleapis/rpc v0.0.0-20260203192932-546029d2fa20 // indirect google.golang.org/grpc v1.79.3 // indirect google.golang.org/protobuf v1.36.11 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect )