Skip to content

Commit

Permalink
Update ci to use go.uber.org/mock v0.5.0 to match go.mod (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
crobby authored Feb 18, 2025
1 parent 7fc6cea commit aa79a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
# https://github.com/actions/checkout/releases/tag/v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name : Install mockgen
run: go install -v -x go.uber.org/mock/mockgen@v0.4.0
run: go install -v -x go.uber.org/mock/mockgen@v0.5.0
- name : Run CI
run: bash scripts/ci
2 changes: 1 addition & 1 deletion scripts/ci
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi

if [[ -z $(type -p "mockgen") ]]; then
echo "'mockgen': executable file not found in \$PATH. mockgen is needed to compelete code generation."
echo "Install mockgen with 'go install go.uber.org/mock/mockgen@v0.4.0'"
echo "Install mockgen with 'go install go.uber.org/mock/mockgen@v0.5.0'"
exit 1
fi

Expand Down

0 comments on commit aa79a60

Please sign in to comment.