chore(deps): bump github.com/schollz/progressbar/v3 from 3.18.0 to 3.19.0 #1081
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: Package Auditing | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| jobs: | |
| PackageAuditing: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: Package Auditor (GoVulnCheck) | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-vulncheck') }} | |
| container: | |
| image: golang:1.25.5 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: bypass dep | |
| run: go env -w GOPRIVATE=github.com/zRedShift/mimemagic | |
| - name: Download dependencies | |
| run: go mod download | |
| - name: GoVulnCheck | |
| run: make govulncheck |