Skip to content

Commit

Permalink
fix username
Browse files Browse the repository at this point in the history
  • Loading branch information
owenrumney committed Dec 7, 2021
1 parent 91365f4 commit 868e13e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ builds:

release:
github:
owner: owenrum
owner: owenrumney
name: go-sarif

changelog:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# go-sarif
[![Go Report Card](https://goreportcard.com/badge/github.com/owenrum/go-sarif)](https://goreportcard.com/report/github.com/owenrum/go-sarif)
[![Github Release](https://img.shields.io/github/release/owenrum/go-sarif.svg)](https://github.com/owenrum/go-sarif/releases)
[![Go Report Card](https://goreportcard.com/badge/github.com/owenrumney/go-sarif)](https://goreportcard.com/report/github.com/owenrumney/go-sarif)
[![Github Release](https://img.shields.io/github/release/owenrumney/go-sarif.svg)](https://github.com/owenrumney/go-sarif/releases)

## What?

Expand Down Expand Up @@ -78,7 +78,7 @@ For more information about SARIF, you can visit the [Oasis Open](https://www.oas

## Usage

Add an import to `go get github.com/owenrum/go-sarif/sarif`
Add an import to `go get github.com/owenrumney/go-sarif/sarif`
### Parsing a Sarif report

There are a number of ways to load in the content of a sarif report.
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/owenrum/go-sarif/sarif"
"github.com/owenrumney/go-sarif/sarif"
)

// simple structure for the output of tfsec
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/owenrum/go-sarif
module github.com/owenrumney/go-sarif

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion test/report_stage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/owenrum/go-sarif/sarif"
"github.com/owenrumney/go-sarif/sarif"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion test/run_stage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"testing"

"github.com/owenrum/go-sarif/sarif"
"github.com/owenrumney/go-sarif/sarif"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 868e13e

Please sign in to comment.