Skip to content

build(deps): bump step-security/harden-runner from 2.13.3 to 2.14.0 #28

build(deps): bump step-security/harden-runner from 2.13.3 to 2.14.0

build(deps): bump step-security/harden-runner from 2.13.3 to 2.14.0 #28

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@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- 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