Skip to content

Commit

Permalink
Merge pull request #1 from haevg-rz/move-to-haevg
Browse files Browse the repository at this point in the history
Umzug zur Org
  • Loading branch information
dhcgn committed Jun 24, 2022
2 parents 446c8ae + 7c9ba83 commit ca97250
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Test
run: |
go test -coverprofile coverage.out github.com/dhcgn/dockerdetector
go test -coverprofile coverage.out github.com/haevg-rz/dockerdetector
go tool cover -html=coverage.out -o coverage.html
- name: Upload a Build Artifact
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# dockerdetector

[![Go](https://github.com/dhcgn/dockerdetector/actions/workflows/go.yml/badge.svg)](https://github.com/dhcgn/dockerdetector/actions/workflows/go.yml)
[![codecov](https://codecov.io/gh/dhcgn/dockerdetector/branch/main/graph/badge.svg?token=9CMJ0HZA6B)](https://codecov.io/gh/dhcgn/dockerdetector)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=dhcgn_dockerdetector&metric=alert_status)](https://sonarcloud.io/dashboard?id=dhcgn_dockerdetector)
[![Go Report Card](https://goreportcard.com/badge/github.com/dhcgn/dockerdetector)](https://goreportcard.com/report/github.com/dhcgn/dockerdetector)
[![Go Doc](https://godoc.org/github.com/dhcgn/dockerdetector?status.svg)](http://godoc.org/github.com/dhcgn/dockerdetector)
[![Known Vulnerabilities](https://snyk.io/test/github/dhcgn/dockerdetector/badge.svg?targetFile=go.mod)](https://snyk.io/test/github/dhcgn/dockerdetector?targetFile=go.mod)
[![Go](https://github.com/haevg-rz/dockerdetector/actions/workflows/go.yml/badge.svg)](https://github.com/haevg-rz/dockerdetector/actions/workflows/go.yml)
[![codecov](https://codecov.io/gh/haevg-rz/dockerdetector/branch/main/graph/badge.svg?token=9CMJ0HZA6B)](https://codecov.io/gh/haevg-rz/dockerdetector)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=haevg-rz_dockerdetector&metric=alert_status)](https://sonarcloud.io/dashboard?id=haevg-rz_dockerdetector)
[![Go Report Card](https://goreportcard.com/badge/github.com/haevg-rz/dockerdetector)](https://goreportcard.com/report/github.com/haevg-rz/dockerdetector)
[![Go Doc](https://godoc.org/github.com/haevg-rz/dockerdetector?status.svg)](http://godoc.org/github.com/haevg-rz/dockerdetector)
[![Known Vulnerabilities](https://snyk.io/test/github/haevg-rz/dockerdetector/badge.svg?targetFile=go.mod)](https://snyk.io/test/github/haevg-rz/dockerdetector?targetFile=go.mod)

## Intro

Expand All @@ -17,15 +17,15 @@ Used cryptographic primitives are SHA256 and HMAC-SHA256.

## Usage

`go get -u github.com/dhcgn/dockerdetector`
`go get -u github.com/haevg-rz/dockerdetector`

```go
package main

import (
"fmt"

"github.com/dhcgn/dockerdetector"
"github.com/haevg-rz/dockerdetector"
)

func main() {
Expand Down Expand Up @@ -60,7 +60,7 @@ func main() {
```
$ docker run -i -t --rm golang
root@110c80b1eb43:/go# go install github.com/dhcgn/dockerdetector/cmd/dockerdetector@latest
root@110c80b1eb43:/go# go install github.com/haevg-rz/dockerdetector/cmd/dockerdetector@latest
root@110c80b1eb43:/go# dockerdetector
Run in Docker: true
Docker ID: 3ae2bacb803925e4e1be937b8e4609d138abcd6cf61165d9a57a48823107ad56
Expand Down
2 changes: 1 addition & 1 deletion cmd/dockerdetector/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/dhcgn/dockerdetector"
"github.com/haevg-rz/dockerdetector"
)

func main() {
Expand Down

0 comments on commit ca97250

Please sign in to comment.