From 9d950f61038d1a26620022de421b690a72db8e9e Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 4 Mar 2025 13:51:16 +0900 Subject: [PATCH] kunalkushwaha/ltag -> containerd/ltag `go install github.com/kunalkushwaha/ltag@latest` no longer works, even for ltag v0.2.x. ``` go: downloading github.com/kunalkushwaha/ltag v0.3.0 go: github.com/kunalkushwaha/ltag@latest: version constraints conflict: github.com/kunalkushwaha/ltag@v0.3.0: parsing go.mod: module declares its path as: github.com/containerd/ltag but was required as: github.com/kunalkushwaha/ltag ``` Caused by containerd/ltag PR 19 Signed-off-by: Akihiro Suda --- action.yml | 2 +- script/validate/fileheader | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index be44963..1421d9f 100644 --- a/action.yml +++ b/action.yml @@ -63,7 +63,7 @@ runs: run: | echo "::group::🚧 Get dependencies" go install -v github.com/vbatts/git-validation@latest - go install -v github.com/kunalkushwaha/ltag@latest + go install -v github.com/containerd/ltag@latest echo "::endgroup::" - name: DCO Checks diff --git a/script/validate/fileheader b/script/validate/fileheader index 5db5ca9..9dc31fa 100755 --- a/script/validate/fileheader +++ b/script/validate/fileheader @@ -19,7 +19,7 @@ set -eu -o pipefail if ! command -v ltag; then >&2 echo "ERROR: ltag not found. Install with:" - >&2 echo " go install github.com/kunalkushwaha/ltag@latest" + >&2 echo " go install github.com/containerd/ltag@latest" exit 1 fi