Skip to content

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 #366

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 #366

Workflow file for this run

---
name: test
on:
push:
branches:
- main
- v2
pull_request:
permissions:
contents: read
pull-requests: write
checks: write
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: "go.mod"
cache: true
- name: Install go-ctrf-json-reporter
run: go install github.com/ctrf-io/go-ctrf-json-reporter/cmd/go-ctrf-json-reporter@latest
- name: Run tests
run: go test -json ./... | go-ctrf-json-reporter -o test-results.json
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@0f299074936c32ccaab5be5230511f6b2b9080aa # v1.0.28
with:
report-path: test-results.json
github-report: true
if: always()