Skip to content

Commit

Permalink
Merge pull request #78 from golingon/dependencies-again
Browse files Browse the repository at this point in the history
Refactor dependecies with docs
  • Loading branch information
veggiemonk authored Aug 3, 2024
2 parents afa2e87 + bfc9795 commit 135863a
Show file tree
Hide file tree
Showing 31 changed files with 346 additions and 1,202 deletions.
68 changes: 0 additions & 68 deletions .github/workflows/codeql.yml

This file was deleted.

12 changes: 5 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,25 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }} # To only cancel in-progress runs of the same workflow
cancel-in-progress: true

permissions: # added using https://github.com/step-security/secure-workflows
permissions: # added using https://github.com/step-security/secure-workflows
contents: read

jobs:
test:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.0.0
with:
fetch-depth: 1

- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: './go.mod'
go-version-file: "./go.mod"
check-latest: true
cache-dependency-path: ./go.mod

- name: run CI
run: go run cmd/tools/ci/*.go -pr -doc -nodiff

run: go run cmd/tools/ci/*.go -pr -nodiff
11 changes: 5 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,25 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }} # To only cancel in-progress runs of the same workflow
cancel-in-progress: true

permissions: # added using https://github.com/step-security/secure-workflows
permissions: # added using https://github.com/step-security/secure-workflows
contents: read

jobs:
test:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.0.0
with:
fetch-depth: 1

- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: './go.mod'
go-version-file: "./go.mod"
check-latest: true
cache-dependency-path: ./go.mod

- name: run CI
run: go run cmd/tools/ci/*.go -pr -doc -nodiff
run: go run cmd/tools/ci/*.go -pr -nodiff
42 changes: 21 additions & 21 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ github.com/leodido/go-urn v1.4.0 : MIT
github.com/mitchellh/go-wordwrap v1.0.1 : MIT
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd : Apache-2.0
github.com/modern-go/reflect2 v1.0.2 : Apache-2.0
github.com/tidwall/gjson v1.17.1 : MIT
github.com/tidwall/gjson v1.17.2 : MIT
github.com/tidwall/match v1.1.1 : MIT
github.com/tidwall/pretty v1.2.1 : MIT
github.com/tidwall/sjson v1.2.5 : MIT
github.com/veggiemonk/strcase v0.0.0-20240108101409-9f441287a9a9 : MIT
github.com/zclconf/go-cty/cty v1.14.4 : MIT
github.com/zclconf/go-cty/cty v1.15.0 : MIT
golang.org/x/crypto/sha3 v0.25.0 : BSD-3-Clause
golang.org/x/exp v0.0.0-20240707233637-46b078467d37 : BSD-3-Clause
golang.org/x/mod v0.19.0 : BSD-3-Clause
Expand All @@ -41,11 +41,11 @@ golang.org/x/tools v0.23.0 : BSD-3-Clause
gopkg.in/inf.v0 v0.9.1 : BSD-3-Clause
gopkg.in/yaml.v2 v2.4.0 : Apache-2.0
gopkg.in/yaml.v3 v3.0.1 : MIT
k8s.io/api v0.30.0 : Apache-2.0
k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.0 : Apache-2.0
k8s.io/apimachinery/pkg v0.30.0 : Apache-2.0
k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.0 : BSD-3-Clause
k8s.io/client-go/kubernetes/scheme v0.30.0 : Apache-2.0
k8s.io/api v0.30.3 : Apache-2.0
k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.3 : Apache-2.0
k8s.io/apimachinery/pkg v0.30.3 : Apache-2.0
k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.3 : BSD-3-Clause
k8s.io/client-go/kubernetes/scheme v0.30.3 : Apache-2.0
k8s.io/klog/v2 v2.130.1 : Apache-2.0
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 : Apache-2.0
k8s.io/utils/internal/third_party/forked/golang/net v0.0.0-20240711033017-18e509b52bc8 : BSD-3-Clause
Expand Down Expand Up @@ -104,7 +104,7 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd

github.com/modern-go/reflect2 v1.0.2

github.com/tidwall/gjson v1.17.1
github.com/tidwall/gjson v1.17.2

github.com/tidwall/match v1.1.1

Expand All @@ -114,7 +114,7 @@ github.com/tidwall/sjson v1.2.5

github.com/veggiemonk/strcase v0.0.0-20240108101409-9f441287a9a9

github.com/zclconf/go-cty/cty v1.14.4
github.com/zclconf/go-cty/cty v1.15.0

golang.org/x/crypto/sha3 v0.25.0

Expand Down Expand Up @@ -162,15 +162,15 @@ gopkg.in/yaml.v3 v3.0.1
See the License for the specific language governing permissions and
limitations under the License.

k8s.io/api v0.30.0
k8s.io/api v0.30.3

k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.0
k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.3

k8s.io/apimachinery/pkg v0.30.0
k8s.io/apimachinery/pkg v0.30.3

k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.0
k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.3

k8s.io/client-go/kubernetes/scheme v0.30.0
k8s.io/client-go/kubernetes/scheme v0.30.3

k8s.io/klog/v2 v2.130.1

Expand Down Expand Up @@ -3172,7 +3172,7 @@ Apache-2.0
---

MIT
(github.com/tidwall/gjson v1.17.1)
(github.com/tidwall/gjson v1.17.2)

The MIT License (MIT)

Expand Down Expand Up @@ -3309,7 +3309,7 @@ SOFTWARE.
---

MIT
(github.com/zclconf/go-cty/cty v1.14.4)
(github.com/zclconf/go-cty/cty v1.15.0)

MIT License

Expand Down Expand Up @@ -3875,7 +3875,7 @@ limitations under the License.
---

Apache-2.0
(k8s.io/api v0.30.0)
(k8s.io/api v0.30.3)


Apache License
Expand Down Expand Up @@ -4084,7 +4084,7 @@ Apache-2.0
---

Apache-2.0
(k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.0)
(k8s.io/apiextensions-apiserver/pkg/apis/apiextensions v0.30.3)


Apache License
Expand Down Expand Up @@ -4293,7 +4293,7 @@ Apache-2.0
---

Apache-2.0
(k8s.io/apimachinery/pkg v0.30.0)
(k8s.io/apimachinery/pkg v0.30.3)


Apache License
Expand Down Expand Up @@ -4502,7 +4502,7 @@ Apache-2.0
---

BSD-3-Clause
(k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.0)
(k8s.io/apimachinery/third_party/forked/golang/reflect v0.30.3)

Copyright (c) 2009 The Go Authors. All rights reserved.

Expand Down Expand Up @@ -4536,7 +4536,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---

Apache-2.0
(k8s.io/client-go/kubernetes/scheme v0.30.0)
(k8s.io/client-go/kubernetes/scheme v0.30.3)


Apache License
Expand Down
Loading

0 comments on commit 135863a

Please sign in to comment.