Skip to content

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #290

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #290

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24
- name: Test and cover
# We don't need the benchmarks to run for long, just enough for coverage.
run: mkdir -p coverage; make cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./coverage/cover.out
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
directory: ./coverage
env_vars: OS