From ae8a48d2c0fa2a05581d614856426d68f8852fb8 Mon Sep 17 00:00:00 2001 From: Evan Rittenhouse Date: Tue, 10 Sep 2024 14:36:56 -0400 Subject: [PATCH] Switch repo declaration for testing --- README.md | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2ba87e8..73314f4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This repo is an adaptor that converts the [staticcheck](https://pkg.go.dev/honne ## Installation ```bash -go install github.com/miare-ir/staticcheck-gitlab-ci@latest +go install github.com/emanguy/staticcheck-gitlab-ci@latest ``` ## Usage @@ -30,7 +30,7 @@ code_quality: stage: checks script: - go install honnef.co/go/tools/cmd/staticcheck@v0.4.2 - - go install github.com/miare-ir/staticcheck-gitlab-ci@latest + - go install github.com/emanguy/staticcheck-gitlab-ci@latest - staticcheck -f json ./... | staticcheck-gitlab-ci > staticcheck-report.json allow_failure: true artifacts: diff --git a/go.mod b/go.mod index 08247a7..37a46e1 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/miare-ir/staticcheck-gitlab-ci +module github.com/emanguy/staticcheck-gitlab-ci go 1.19