Replace SHA-1 with SHA-256 for X.509 SubjectKeyIdentifier computation #80
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, pull_request ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: src/config-server/go.mod | |
| - uses: golangci/golangci-lint-action@v9 | |
| with: | |
| working-directory: src/config-server/ |