From 22a805033aa861ad171f4a0b560d241a7c57ac86 Mon Sep 17 00:00:00 2001 From: David van der Spek Date: Mon, 8 May 2023 13:28:28 -0400 Subject: [PATCH] fix(ci): use go install instead of go get Signed-off-by: David van der Spek --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4064d1c8c..aeaf4d5fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: run: | sudo apt-get -q update sudo -E apt-get -yq --no-install-suggests --no-install-recommends install python2-minimal - cd /tmp && go get -u github.com/vbatts/git-validation + cd /tmp && go install github.com/vbatts/git-validation@latest - name: Build working-directory: ./src/github.com/docker/distribution @@ -47,4 +47,4 @@ jobs: - uses: codecov/codecov-action@v1 with: - directory: ./src/github.com/docker/distribution \ No newline at end of file + directory: ./src/github.com/docker/distribution