Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- "1.12"
- "stable"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go }}

Expand All @@ -33,7 +33,7 @@ jobs:
run: go test -bench=. -coverprofile=coverage.out ./...

- name: Run Gosec Security Scanner
uses: securego/gosec@v2.23.0
uses: securego/gosec@57f161386e11e13e4c8a37255bc1a6502993d079 # v2.29.0
with:
args: ./...

Expand All @@ -44,7 +44,7 @@ jobs:
go tool cover -html=coverage.out -o=coveragereport.html.out

- name: Publish code coverage badge (and optional report)
uses: linkdata/gitcoverage@v7
uses: linkdata/gitcoverage@v11
with:
coverage: ${{ steps.coverage.outputs.coverage }}
report: "coveragereport.html.out"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![build](https://github.com/linkdata/deadlock/actions/workflows/go.yml/badge.svg)](https://github.com/linkdata/deadlock/actions/workflows/go.yml)
[![coverage](https://github.com/linkdata/deadlock/blob/coverage/main/badge.svg)](https://html-preview.github.io/?url=https://github.com/linkdata/deadlock/blob/coverage/main/report.html)
[![coverage](https://github.com/linkdata/deadlock/blob/gitcoverage/main/badge.svg)](https://html-preview.github.io/?url=https://github.com/linkdata/deadlock/blob/gitcoverage/main/report.html)
[![Docs](https://godoc.org/github.com/linkdata/deadlock?status.svg)](https://godoc.org/github.com/linkdata/deadlock)

# Preface
Expand Down
Loading