From 69493cb6dba80adbc1c2a992729e8ef1d25dc779 Mon Sep 17 00:00:00 2001 From: Mateus Oliveira Date: Tue, 12 Nov 2024 10:24:48 -0300 Subject: [PATCH] fix: go mod tidy verification Signed-off-by: Mateus Oliveira --- .github/workflows/ci.yml | 6 ++++-- Makefile | 9 ++++++--- go.mod | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e50631e..6abfd02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,8 @@ jobs: - uses: actions/setup-go@v5 with: - go-version-file: 'go.mod' + go-version-file: go.mod + cache: false - name: Install Go dependencies run: go mod download @@ -77,7 +78,8 @@ jobs: - uses: actions/setup-go@v5 with: - go-version-file: 'go.mod' + go-version-file: go.mod + cache: false - name: Checkout Non Admin Controller (NAC) uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 8e85be5..f5b05ab 100644 --- a/Makefile +++ b/Makefile @@ -262,11 +262,14 @@ check-manifests: manifests ## Check if 'make manifests' was run. ec: editorconfig ## Run file formatter checks against all project's files. $(EC) -.PHONY: check-go-dependencies -check-go-dependencies: ## Check if 'go mod tidy' was run. +.PHONY: go-dependencies +go-dependencies: ## Update go dependencies. go mod tidy go mod verify - test -z "$(shell git status --short)" || (echo "run 'go mod tidy' to update go dependencies" && exit 1) + +.PHONY: check-go-dependencies +check-go-dependencies: go-dependencies ## Check if 'make go-dependencies' was run. + test -z "$(shell git status --short)" || (echo "run 'make go-dependencies' to update go dependencies" && exit 1) .PHONY: check-images check-images: MANAGER_IMAGE:=$(shell grep -I 'newName: ' ./config/manager/kustomization.yaml | awk -F': ' '{print $$2}') diff --git a/go.mod b/go.mod index cfac837..65b52f5 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,7 @@ toolchain go1.22.6 require ( github.com/go-logr/logr v1.4.1 + github.com/google/uuid v1.6.0 github.com/onsi/ginkgo/v2 v2.19.0 github.com/onsi/gomega v1.33.1 github.com/stretchr/testify v1.9.0 @@ -36,7 +37,6 @@ require ( github.com/google/go-cmp v0.6.0 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect - github.com/google/uuid v1.6.0 // indirect github.com/imdario/mergo v0.3.13 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect