From 17290f54adebb97675126d3e47e7b7e3287d366a Mon Sep 17 00:00:00 2001 From: Manuel de Brito Fontes Date: Mon, 7 Sep 2026 23:39:12 -0300 Subject: [PATCH] Pin the machine at main, not at a branch that has been merged away go.mod named 4a006f3, a commit that only ever existed on the branch of spin-stack/spin-machine#2. It was cherry-picked onto main and merged as 58d404e, so the pin resolved to a commit that is not in the history of anything. There is no tag to move to and there will not be one: spin-machine is versioned CalVer, and `v20260908.01` is not valid semver, so the module system resolves it to a pseudo-version of the commit it points at anyway. A pseudo-version off main is what a pin here looks like, and go.sum is what makes it exact. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_019GHRRFvbnZi5q3KSTvyW5a --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3be742e..3574eaf 100644 --- a/go.mod +++ b/go.mod @@ -26,7 +26,7 @@ require ( github.com/opencontainers/image-spec v1.1.1 github.com/opencontainers/runc v1.5.1 github.com/opencontainers/runtime-spec v1.3.0 - github.com/spin-stack/spin-machine v0.0.0-20260908021448-4a006f3f2f33 + github.com/spin-stack/spin-machine v0.0.0-20260908023615-58d404efedaf github.com/stretchr/testify v1.11.1 github.com/vishvananda/netlink v1.3.1 github.com/vishvananda/netns v0.0.5 diff --git a/go.sum b/go.sum index 6d5fb27..92198f9 100644 --- a/go.sum +++ b/go.sum @@ -173,8 +173,8 @@ github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0t github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc= github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w= github.com/sirupsen/logrus v1.9.4/go.mod h1:ftWc9WdOfJ0a92nsE2jF5u5ZwH8Bv2zdeOC42RjbV2g= -github.com/spin-stack/spin-machine v0.0.0-20260908021448-4a006f3f2f33 h1:7AZSlQGTyFxi6eoEW0CZ11JV+DX9azwya1W5wObOgxk= -github.com/spin-stack/spin-machine v0.0.0-20260908021448-4a006f3f2f33/go.mod h1:VbqCcwvAK1lcazIf6rSli6qLrgLU5f22CutMng1pRbc= +github.com/spin-stack/spin-machine v0.0.0-20260908023615-58d404efedaf h1:2/LWcPUHy9LFlK/pQcizs++HH1Q0HBne3BjniZG5SqQ= +github.com/spin-stack/spin-machine v0.0.0-20260908023615-58d404efedaf/go.mod h1:VbqCcwvAK1lcazIf6rSli6qLrgLU5f22CutMng1pRbc= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=