fix: 修改容器端口绑定规则,修改mysql root用户默认密码 #872
Workflow file for this run
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: Run govulncheck | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| paths: | |
| - "**" | |
| - "!**.md" | |
| pull_request: | |
| paths: | |
| - "**" | |
| - "!**.md" | |
| jobs: | |
| vulncheck-check: | |
| runs-on: ubuntu-latest | |
| env: | |
| GO111MODULE: on | |
| steps: | |
| - name: Fetch Repository | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| check-latest: true | |
| cache: false | |
| - name: Install Govulncheck | |
| run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
| - name: Run Govulncheck | |
| run: govulncheck ./... | |