build(deps): bump golang.org/x/crypto from 0.22.0 to 0.31.0 #109
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: Setup | |
| on: [push, pull_request] | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install go-gitlint | |
| run: | | |
| go install github.com/llorllale/go-gitlint/cmd/go-gitlint@latest | |
| mkdir -p ./_output/tools/ | |
| cp $(go env GOPATH)/bin/go-gitlint ./_output/tools/ | |
| - name: Setup Git hooks | |
| run: | | |
| cp scripts/githooks/commit-msg .git/hooks/ | |
| cp scripts/githooks/pre-commit .git/hooks/ | |
| - name: Add files | |
| run: git add . |