chore: pin versions of workflow actions #894
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f | |
| - name: Setup Go | |
| uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Setup Go Tools | |
| run: make tools | |
| - name: QC | |
| run: make qc | |
| - name: Check Build | |
| run: make build | |
| - name: Test | |
| run: make test |