chore(deps): update github/codeql-action action to v3.26.9 in .github/workflows/scorecard.yml #487
Workflow file for this run
This file contains 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: | |
# paths-ignore: | |
# - "**/*.md" | |
# - "LICENSE" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Tests and coverage | |
run: go run mage.go coverage |