chore(deps): update module github.com/tinylib/msgp to v1.6.4 (release/v0.7) #3755
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Install Go | |
| # https://github.com/actions/setup-go/releases/tag/v5.0.0 | |
| uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install mockgen | |
| run: go install go.uber.org/mock/mockgen@v0.5.2 | |
| - name: Install msgp | |
| run: go install github.com/tinylib/msgp | |
| - name: Install golangci-lint | |
| uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2 | |
| with: | |
| version: v1.64.8 | |
| - name: Build | |
| run: make build-bin | |
| - name: Test | |
| run: make test | |
| - name: Validate | |
| run: make validate |