Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -204,5 +204,4 @@ cue.mod:
rm -rf cue.mod/gen
cue get go github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1
cue get go github.com/tektoncd/triggers/pkg/apis/triggers/v1beta1
cue get go k8s.io/api/core/v1
cue get go k8s.io/api/rbac/v1
cue mod tidy
7 changes: 0 additions & 7 deletions cue.mod/gen/k8s.io/api/rbac/v1/register_go_gen.cue

This file was deleted.

207 changes: 0 additions & 207 deletions cue.mod/gen/k8s.io/api/rbac/v1/types_go_gen.cue

This file was deleted.

8 changes: 7 additions & 1 deletion cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
module: "github.com/buildsec/frsca@v0"
language: {
version: "v0.12.0"
version: "v0.13.2"
}
deps: {
"cue.dev/x/k8s.io@v0": {
v: "v0.5.0"
default: true
}
}
2 changes: 0 additions & 2 deletions dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ package frsca
import (
_ "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1"
_ "github.com/tektoncd/triggers/pkg/apis/triggers/v1beta1"
_ "k8s.io/api/core/v1"
_ "k8s.io/api/rbac/v1"
)
4 changes: 2 additions & 2 deletions frsca.cue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package frsca

import (
k8sCoreV1 "k8s.io/api/core/v1"
k8sRbacV1 "k8s.io/api/rbac/v1"
k8sCoreV1 "cue.dev/x/k8s.io/api/core/v1"
k8sRbacV1 "cue.dev/x/k8s.io/api/rbac/v1"
pipelineV1Beta1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1"
triggersV1Beta1 "github.com/tektoncd/triggers/pkg/apis/triggers/v1beta1"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.24.1
require (
github.com/tektoncd/pipeline v0.68.0
github.com/tektoncd/triggers v0.31.0
k8s.io/api v0.29.13
)

require (
Expand Down Expand Up @@ -72,6 +71,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/api v0.29.13 // indirect
k8s.io/apiextensions-apiserver v0.29.13 // indirect
k8s.io/apimachinery v0.29.13 // indirect
k8s.io/client-go v0.29.13 // indirect
Expand Down
2 changes: 1 addition & 1 deletion platform/00-kubernetes-minikube-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COSIGN_RELEASE_URL="https://github.com/sigstore/cosign/releases/download/${COSIG
COSIGN_CHECKSUMS="cosign_checksums.txt"
COSIGN_ASSET="${COSIGN_BIN}-${COSIGN_OS}-${COSIGN_ARCH}"

CUE_VERSION=v0.12.0
CUE_VERSION=v0.13.2
CUE_FILE_NAME=cue_${CUE_VERSION}_linux_amd64.tar.gz
CUE_URL=https://github.com/cue-lang/cue/releases/download/${CUE_VERSION}
CUE_CHECKSUMS=checksums.txt
Expand Down