Skip to content

Commit

Permalink
chores: Use the updated command to manage go dependencies
Browse files Browse the repository at this point in the history
make vendor was deprecated in favor of modules.download and vendor.check
to modules.check
  • Loading branch information
ChristianAvila committed Jun 13, 2024
1 parent 351a6b4 commit df9c2f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit df9c2f7

Please sign in to comment.