From df9c2f7bb013298747e7c88c8e2e1b595aa612e9 Mon Sep 17 00:00:00 2001 From: ChristianAvila Date: Thu, 13 Jun 2024 19:29:53 -0400 Subject: [PATCH] chores: Use the updated command to manage go dependencies make vendor was deprecated in favor of modules.download and vendor.check to modules.check --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ccffc8a80..425ae2d502 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: restore-keys: ${{ runner.os }}-pkg- - name: Vendor Dependencies - run: make vendor vendor.check + run: make modules.download modules.check - name: Check Diff run: make check-diff @@ -132,7 +132,7 @@ jobs: restore-keys: ${{ runner.os }}-pkg- - name: Vendor Dependencies - run: make vendor vendor.check + run: make modules.download modules.check # We could run 'make lint' to ensure our desired Go version, but we prefer # this action because it leaves 'annotations' (i.e. it comments on PRs to @@ -248,7 +248,7 @@ jobs: restore-keys: ${{ runner.os }}-pkg- - name: Vendor Dependencies - run: make vendor vendor.check + run: make modules.download modules.check - name: Run Unit Tests run: make -j2 test @@ -308,7 +308,7 @@ jobs: ${{ runner.os }}-pkg- - name: Vendor Dependencies - run: make vendor vendor.check + run: make modules.download modules.check - name: Build Helm Chart run: make -j2 build @@ -379,7 +379,7 @@ jobs: restore-keys: ${{ runner.os }}-pkg- - name: Vendor Dependencies - run: make vendor vendor.check + run: make modules.download modules.check - name: Build Artifacts run: make -j2 build.all