Skip to content

Commit 37c05ce

Browse files
authored
Merge pull request #20 from MadhavJivrajani/change-path
Change module path to include org as `kubernetes-sigs` and bump Go version
2 parents dbe97f7 + 667a6e8 commit 37c05ce

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

.github/workflows/audit.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go
1515
uses: actions/setup-go@v2
1616
with:
17-
go-version: 1.17
17+
go-version: 1.18.1
1818

1919
- name: Set env
2020
shell: bash
@@ -24,11 +24,11 @@ jobs:
2424
2525
- uses: actions/checkout@v2
2626
with:
27-
path: ${{ github.workspace }}/src/github.com/dims/maintainers/
27+
path: ${{ github.workspace }}/src/github.com/kubernetes-sigs/maintainers/
2828

2929
- name: Build
3030
run: make install
31-
working-directory: ${{ github.workspace }}/src/github.com/dims/maintainers/
31+
working-directory: ${{ github.workspace }}/src/github.com/kubernetes-sigs/maintainers/
3232

3333
- name: Checkout kubernetes/community
3434
uses: actions/checkout@v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ updating these files.
6565

6666
You can also validate/check if all the urls in a file are correct using `check-urls`
6767
```bash
68-
[dims@dims-m1 11:31] ~/go/src/k8s.io/community ⟩ ~/go/src/github.com/dims/maintainers/maintainers help check-urls
68+
[dims@dims-m1 11:31] ~/go/src/k8s.io/community ⟩ ~/go/src/github.com/kubernetes-sigs/maintainers/maintainers help check-urls
6969
ensure all the urls in yaml file are still valid
7070

7171
Usage:
@@ -80,7 +80,7 @@ The new `audit` command is helpful to kubernetes chairs and leads as it vets the
8080

8181
Notes:
8282
- ensure kubernetes/community and kubernetes/kubernetes is checked out under $GOPATH/src/k8s.io
83-
- install the tool using `go install github.com/dims/[email protected]` (where v0.2.0 is latest tag as of right now, please check for newer tags)
83+
- install the tool using `go install github.com/kubernetes-sigs/[email protected]` (where v0.2.0 is latest tag as of right now, please check for newer tags)
8484
- change directory to `$GOPATH/src/k8s.io/community` directory and run `maintainers audit sig-auth` (or your own sig) and review the output.
8585

8686
```bash

cmd/audit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"github.com/spf13/cobra"
3535
"k8s.io/apimachinery/pkg/util/sets"
3636

37-
"github.com/dims/maintainers/pkg/utils"
37+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
3838
)
3939

4040
var kubernetesDirectory string

cmd/export.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727

2828
"k8s.io/apimachinery/pkg/util/sets"
2929

30-
"github.com/dims/maintainers/pkg/utils"
30+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
3131
)
3232

3333
// exportCmd represents the export command

cmd/labels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
"k8s.io/apimachinery/pkg/util/sets"
2828

29-
"github.com/dims/maintainers/pkg/utils"
29+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
3030
)
3131

3232
// labelsCmd represents the export command

cmd/prettify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/spf13/cobra"
2727
"gopkg.in/yaml.v3"
2828

29-
"github.com/dims/maintainers/pkg/utils"
29+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
3030
)
3131

3232
var indent int

cmd/prune.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828

2929
"k8s.io/apimachinery/pkg/util/sets"
3030

31-
"github.com/dims/maintainers/pkg/utils"
31+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
3232
)
3333

3434
var dryRun, skipGH, skipDS bool

cmd/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
"github.com/spf13/cobra"
2626

27-
"github.com/dims/maintainers/pkg/utils"
27+
"github.com/kubernetes-sigs/maintainers/pkg/utils"
2828
)
2929

3030
// validateCmd represents the validate command

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"fmt"
2020

21-
"github.com/dims/maintainers/pkg/version"
21+
"github.com/kubernetes-sigs/maintainers/pkg/version"
2222
"github.com/spf13/cobra"
2323
)
2424

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module github.com/dims/maintainers
1+
module github.com/kubernetes-sigs/maintainers
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/pkg/errors v0.9.1

0 commit comments

Comments
 (0)