Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 #328

chore(deps): update actions/checkout digest to a5ac7e5

chore(deps): update actions/checkout digest to a5ac7e5 #328

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Setup Go
uses: actions/setup-go@v5
with:
cache: true
go-version-file: 'go.mod'
- name: Run tests
run: make ci-test
- name: Send test coverage to Codecov
uses: codecov/codecov-action@v3
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.20.0
with:
scan-type: "fs"
ignore-unfixed: true
vuln-type: "os,library"
severity: "CRITICAL,HIGH"
exit-code: "1"