chore(deps): update module github.com/urfave/cli/v2 to v3 (release/v0.2) #2806
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name : Checkout repository | |
| # https://github.com/actions/checkout/releases/tag/v4.1.1 | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install Go | |
| # https://github.com/actions/setup-go/releases/tag/v5.0.0 | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install mockgen | |
| run: go install github.com/golang/mock/[email protected] | |
| - name: Install golangci-lint | |
| uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2 | |
| with: | |
| version: v1.54.0 | |
| - name: Build | |
| run: make build-bin | |
| - name: Test | |
| run: make test | |
| - name: Validate | |
| run: make validate |