build(deps): bump golang.org/x/crypto from 0.36.0 to 0.45.0 #118
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: Go | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '1.24', '1.23' ] | |
| name: Go Version ${{ matrix.go }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install deps | |
| run: | | |
| sudo apt-get -y update | |
| sudo apt-get install -y gnutls-bin softhsm2 | |
| - name: Setup go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Install | |
| run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.0.1 | |
| - name: Build | |
| run: make | |
| - name: Run golangci-lint | |
| run: make check | |
| - name: Test | |
| run: make test |