Skip to content

Commit dcf07d6

Browse files
Move to LanderK-Bondaval (#2)
1 parent d486f7e commit dcf07d6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
- uses: ./
6969
with:
7070
version: local
71-
trim: "github.com/fgrosse/go-coverage-report/"
71+
trim: "github.com/LanderK-Bondaval/go-coverage-report/"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<h1 align="center">Go Coverage Report</h1>
22
<p align="center">A CLI tool and GitHub Action to post Go code coverage reports as comment to your pull requests.</p>
33
<p align="center">
4-
<a href="https://github.com/fgrosse/go-coverage-report/releases"><img src="https://img.shields.io/github/tag/fgrosse/go-coverage-report.svg?label=version&color=brightgreen"></a>
5-
<a href="https://github.com/fgrosse/go-coverage-report/actions/workflows/ci.yml"><img src="https://github.com/fgrosse/go-coverage-report/actions/workflows/ci.yml/badge.svg"></a>
6-
<a href="https://github.com/fgrosse/go-coverage-report/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-BSD--3--Clause-blue.svg"></a>
4+
<a href="https://github.com/LanderK-Bondaval/go-coverage-report/releases"><img src="https://img.shields.io/github/tag/LanderK-Bondaval/go-coverage-report.svg?label=version&color=brightgreen"></a>
5+
<a href="https://github.com/LanderK-Bondaval/go-coverage-report/actions/workflows/ci.yml"><img src="https://github.com/LanderK-Bondaval/go-coverage-report/actions/workflows/ci.yml/badge.svg"></a>
6+
<a href="https://github.com/LanderK-Bondaval/go-coverage-report/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-BSD--3--Clause-blue.svg"></a>
77
</p>
88

99
---
@@ -101,7 +101,7 @@ jobs:
101101
actions: read # to download code coverage results from "test" job
102102
pull-requests: write # write permission needed to comment on PR
103103
steps:
104-
- uses: fgrosse/go-coverage-report@v1.1.1 # Consider using a Git revision for maximum security
104+
- uses: LanderK-Bondaval/go-coverage-report@v1.1.1 # Consider using a Git revision for maximum security
105105
with:
106106
coverage-artifact-name: "code-coverage" # can be omitted if you used this default value
107107
coverage-file-name: "coverage.txt" # can be omitted if you used this default value
@@ -208,7 +208,7 @@ A list of all available versions can be found at the [releases page][releases].
208208

209209
This project is licensed under the BSD-3-Clause License - see the [LICENSE](LICENSE) file for details.
210210

211-
[releases]: https://github.com/fgrosse/go-coverage-report/release
212-
[contributors]: https://github.com/fgrosse/go-coverage-report/contributors
211+
[releases]: https://github.com/LanderK-Bondaval/go-coverage-report/release
212+
[contributors]: https://github.com/LanderK-Bondaval/go-coverage-report/contributors
213213
[built-with]: go.mod
214214
[upload-artifacts-issues]: https://github.com/cli/cli/issues/5625#issuecomment-1857787634

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/fgrosse/go-coverage-report
1+
module github.com/LanderK-Bondaval/go-coverage-report
22

33
go 1.21
44

scripts/download-cli-tool.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ fi
6666

6767
if [[ ${#VERSION} == 40 ]]; then
6868
start_group "Installing go-coverage-report from remote source"
69-
go install -v "github.com/fgrosse/go-coverage-report@$VERSION"
69+
go install -v "github.com/LanderK-Bondaval/go-coverage-report@$VERSION"
7070
end_group
7171
exit 0
7272
fi
@@ -89,13 +89,13 @@ start_group "Downloading tar archive from GitHub"
8989
mkdir -p .github/outputs
9090
OS=$(echo "$RUNNER_OS" | tr '[:upper:]' '[:lower:]')
9191
FILENAME="go-coverage-report-${VERSION}-${OS}-${ARCH}.tar.gz"
92-
URL="https://github.com/fgrosse/go-coverage-report/releases/download/${VERSION}/${FILENAME}"
92+
URL="https://github.com/LanderK-Bondaval/go-coverage-report/releases/download/${VERSION}/${FILENAME}"
9393
curl --fail --location "$URL" --output ".github/outputs/$FILENAME"
9494
end_group
9595

9696
if ! [[ "$SHA256SUM" ]] ; then
9797
start_group "Checking checksum using checksums.txt file from GitHub release"
98-
URL="https://github.com/fgrosse/go-coverage-report/releases/download/${VERSION}/checksums.txt"
98+
URL="https://github.com/LanderK-Bondaval/go-coverage-report/releases/download/${VERSION}/checksums.txt"
9999
cd .github/outputs
100100
curl -fsSL "$URL" | sha256sum --check --ignore-missing
101101
cd -

0 commit comments

Comments
 (0)