fix(deps): update all patch and digest versions #6450
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: Pull request checks | |
| on: | |
| push: | |
| branches: [ 'main', 'release-*' ] | |
| pull_request: | |
| branches: [ 'main', 'release-*' ] | |
| # Set restrictive permissions at workflow level | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| # Grant specific permissions needed only for this job | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| # required for CODECOV token | |
| id-token: write | |
| strategy: | |
| matrix: | |
| go: [ '1.25' ] | |
| steps: | |
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1 | |
| with: | |
| cache: false # Disable caching to avoid extraction conflicts | |
| go-version: ${{ matrix.go }} | |
| - name: Run verification and unit tests | |
| run: make docker-generate verify cov-exclude-generated | |
| - id: get-codecov-token | |
| uses: grafana/shared-workflows/actions/get-vault-secrets@9f37f656e063f0ad0b0bfc38d49894b57d363936 # get-vault-secrets/v1.2.1 | |
| continue-on-error: true | |
| with: | |
| # Secrets placed in the ci/repo/grafana/beyla/codecov path in Vault | |
| repo_secrets: | | |
| CODECOV_TOKEN=codecov:token | |
| - name: Report coverage | |
| uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 | |
| continue-on-error: true | |
| with: | |
| file: ./testoutput/cover.txt | |
| flags: unittests |