Bump github.com/go-git/go-git/v5 from 5.17.2 to 5.18.0 #340
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: "CodeQL" | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ master ] | |
| schedule: | |
| - cron: '17 11 * * 2' | |
| jobs: | |
| analyzecover: | |
| name: Analyzecover | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'go' ] | |
| # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | |
| # Learn more about CodeQL language support at https://git.io/codeql-language-support | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 'stable' | |
| - uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: gcc pkg-config libudev-dev libudev1 libpcsclite1 libpcsclite-dev | |
| - name: Gather dependencies | |
| run: go mod download | |
| - name: Run coverage | |
| # disable race condition test for now as it breaks because of the rrdialer | |
| #run: go test -race -coverprofile=coverage.txt -covermode=atomic ./... | |
| run: go test -coverprofile=coverage.txt -covermode=atomic ./... | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v4.0.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |