build(deps): bump library/alpine-3 from cca6473
to 3876b09
(#2442)
#703
This file contains 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: master | |
permissions: {} | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 | |
with: | |
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004 | |
go-version: '^1.19' | |
- run: go version | |
- run: make deps | |
- run: make check-fmt | |
- run: make build | |
- run: make vet | |
- run: make staticcheck | |
- run: make check-race | |
- run: make cicheck | |
- run: make osv-scanner | |
- run: make gosec | |
- run: make govulncheck | |
- run: make publish-coverage |