Skip to content

Commit

Permalink
Merge pull request #312 from Vyom-Yadav/updateDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DelusionalOptimist authored May 19, 2023
2 parents 52c9564 + 674ce18 commit 21e194a
Show file tree
Hide file tree
Showing 7 changed files with 1,534 additions and 323 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-ginkgo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: v1.18
go-version: v1.20
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Test connectivity
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.18
go-version: v1.20

- name: Build karmor
run: make
Expand All @@ -28,7 +28,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.18
go-version: v1.20

- name: Check gofmt
run: make gofmt
Expand All @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.18
go-version: v1.20

- name: Run Gosec Security Scanner
run: make gosec
Expand All @@ -65,7 +65,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.18
go-version: v1.20

- name: Run unit tests
run: make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.20

- name: Install Cosign
uses: sigstore/cosign-installer@main
Expand Down
323 changes: 225 additions & 98 deletions go.mod

Large diffs are not rendered by default.

1,518 changes: 1,301 additions & 217 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion recommend/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (img *ImageInfo) writeAdmissionControllerPolicy(policy kyvernov1.Policy) {
if err := f.Close(); err != nil {
log.WithError(err).Error("file close failed")
}
_ = ReportAdmissionControllerRecord(outFile, policy.Spec.ValidationFailureAction, policy.Annotations)
_ = ReportAdmissionControllerRecord(outFile, string(policy.Spec.ValidationFailureAction), policy.Annotations)
color.Green("created policy %s ...", outFile)
}

Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config:base"
],
"constraints": {
"go": "1.18"
"go": "1.20"
},
"ignorePresets": [":prHourlyLimit2"],
"reviewers": ["team:maintainers"]
Expand Down

0 comments on commit 21e194a

Please sign in to comment.