chore(deps): update github/codeql-action action to v3.29.4 in .github/workflows/scorecard.yml #663
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: Regression Tests | |
| # default token permissions: none | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Currently, there doesn't appear to be a simple solution for | |
| # having required checks with ignored paths (the checks will | |
| # never run and so PRs cannot be merged). | |
| # paths-ignore: | |
| # - "**/*.md" | |
| # - "LICENSE" | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened] | |
| # paths-ignore: | |
| # - "**/*.md" | |
| # - "LICENSE" | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.23.x] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| cache: true | |
| - name: Tests and coverage | |
| run: go test -cover ./... | |
| env: | |
| # self-updater tests make requests to the GitHub API | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |