add v2 to module path to correct version (#637)

Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com>
This commit is contained in:
Adam Martin
2026-06-22 16:40:31 -04:00
committed by GitHub
parent 905b3e4932
commit ec5082df18
68 changed files with 172 additions and 172 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"github.com/google/go-containerregistry/pkg/v1/static"
"github.com/google/go-containerregistry/pkg/v1/types"
"hauler.dev/go/hauler/pkg/artifacts"
"hauler.dev/go/hauler/pkg/consts"
"hauler.dev/go/hauler/v2/pkg/artifacts"
"hauler.dev/go/hauler/v2/pkg/consts"
)
var _ artifacts.OCI = (*Memory)(nil)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/opencontainers/go-digest"
"hauler.dev/go/hauler/pkg/artifacts/memory"
"hauler.dev/go/hauler/v2/pkg/artifacts/memory"
)
func TestMemory_Layers(t *testing.T) {
+1 -1
View File
@@ -1,6 +1,6 @@
package memory
import "hauler.dev/go/hauler/pkg/artifacts"
import "hauler.dev/go/hauler/v2/pkg/artifacts"
type Option func(*Memory)