Skip to content

Commit 58ec1d4

Browse files
Merge pull request #107 from SaschaSchwarze0/sascha-bump-v0.14
Bump build to v0.14.0
2 parents 6fc0e43 + 57a0450 commit 58ec1d4

File tree

1,780 files changed

+212205
-61345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,780 files changed

+212205
-61345
lines changed

.github/actions/setup/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- uses: actions/setup-go@v3
12+
- uses: actions/setup-go@v5
1313
with:
1414
go-version: ${{ inputs.go-version }}
1515
cache: true
1616
check-latest: true
17-
- uses: ko-build/setup-ko@v0.6
17+
- uses: ko-build/setup-ko@v0.7
1818
- name: install-goml
1919
shell: bash
2020
run: |

.github/actions/shipwright/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: set up shipwright build controller on a kind instance
44
runs:
55
using: composite
66
steps:
7-
- uses: helm/kind-action@v1.4.0
7+
- uses: helm/kind-action@v1.10.0
88
with:
9-
version: v0.14.0
9+
version: v0.25.0
1010
cluster_name: kind
1111
wait: 120s
1212
- uses: shipwright-io/setup@v1

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
TAG: ${{ github.event.inputs.release }}
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- uses: ./.github/actions/setup
2929
- uses: sigstore/cosign-installer@v3
3030
- uses: azure/[email protected]

.github/workflows/security.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout Code
22-
uses: actions/checkout@v3
23-
24-
- name: Setup Go
25-
uses: actions/setup-go@v4
26-
with:
27-
go-version: 1.22.x
28-
check-latest: true
29-
22+
uses: actions/checkout@v4
23+
- uses: ./.github/actions/setup
3024
- name: Run gosec
3125
uses: securego/gosec@master
32-
33-
- name: Run govulncheck
34-
uses: golang/govulncheck-action@v1
35-
with:
36-
go-version-input: '1.21.x'
37-
go-package: ./...

.github/workflows/test.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,27 @@ jobs:
1515
runs-on: ubuntu-latest
1616
name: unit
1717
steps:
18-
- uses: actions/checkout@v3
18+
- name: Checkout Code
19+
uses: actions/checkout@v4
1920
- uses: ./.github/actions/setup
20-
with:
21-
go-version: 1.22.x
2221
- name: test-unit
2322
run: make test-unit
2423
integration:
2524
runs-on: ubuntu-latest
2625
name: integration
2726
steps:
28-
- uses: actions/checkout@v3
27+
- name: Checkout Code
28+
uses: actions/checkout@v4
2929
- uses: ./.github/actions/setup
30-
with:
31-
go-version: 1.22.x
3230
- name: test-integration
3331
run: make test-integration
3432

3533
# test-e2e:
3634
# name: test-e2e
3735
# runs-on: ubuntu-latest
3836
# steps:
39-
# - uses: actions/checkout@v3
37+
# - name: Checkout Code
38+
# uses: actions/checkout@v4
4039
# - uses: ./.github/actions/setup
4140
# - uses: ./.github/actions/shipwright
4241

.github/workflows/verify.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: generate
2020
steps:
2121
- name: Checkout Code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- uses: ./.github/actions/setup
2525

@@ -32,9 +32,8 @@ jobs:
3232
name: golangci-lint
3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v3
36-
35+
uses: actions/checkout@v4
3736
- name: golangci-lint
38-
uses: golangci/golangci-lint-action@v3
37+
uses: golangci/golangci-lint-action@v6
3938
with:
4039
args: --timeout=10m

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.vscode
12
/bin/
23
/*.out
34
/*.test

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ KO_DOCKER_REPO ?= $(IMAGE_HOST)/$(IMAGE_NAMESPACE)
2525
KO_OPTS ?= --base-import-paths --tags=${IMAGE_TAG}
2626

2727
# controller-gen version and full path to the executable
28-
CONTROLLER_TOOLS_VERSION ?= v0.12.1
28+
CONTROLLER_TOOLS_VERSION ?= v0.15.0
2929
CONTROLLER_GEN ?= $(LOCAL_BIN)/controller-gen
3030

3131
# envtest version and full path to the executable
32-
ENVTEST_K8S_VERSION ?= 1.27
32+
ENVTEST_K8S_VERSION ?= 1.29
3333
ENVTEST ?= $(LOCAL_BIN)/setup-envtest
3434

3535
# chart base directory and path to the "templates" folder
3636
CHART_DIR ?= ./chart
3737
MANIFEST_DIR ?= $(CHART_DIR)/generated
3838

3939
# shipwright and tekton target versions to download upstream crd resources
40-
SHIPWRIGHT_VERSION ?= v0.13.0
41-
TEKTON_VERSION ?= v0.53.2
40+
SHIPWRIGHT_VERSION ?= v0.14.0
41+
TEKTON_VERSION ?= v0.56.8
4242

4343
# full path to the directory where the crds are downloaded
4444
CRD_DIR ?= $(LOCAL_BIN)/crds

go.mod

Lines changed: 58 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,97 @@
11
module github.com/shipwright-io/triggers
22

3-
go 1.21
3+
go 1.22.0
44

55
require (
66
github.com/go-logr/logr v1.4.2
77
github.com/google/go-github/v53 v53.2.0
8-
github.com/onsi/ginkgo/v2 v2.19.0
9-
github.com/onsi/gomega v1.33.1
10-
github.com/shipwright-io/build v0.13.0
11-
github.com/tektoncd/pipeline v0.50.5
12-
k8s.io/api v0.27.11
13-
k8s.io/apimachinery v0.27.11
14-
k8s.io/apiserver v0.27.11
15-
k8s.io/client-go v0.27.11
16-
k8s.io/utils v0.0.0-20230505201702-9f6742963106
17-
knative.dev/pkg v0.0.0-20231011201526-df28feae6d34
18-
sigs.k8s.io/controller-runtime v0.15.3
8+
github.com/onsi/ginkgo/v2 v2.22.0
9+
github.com/onsi/gomega v1.36.0
10+
github.com/shipwright-io/build v0.14.0
11+
github.com/tektoncd/pipeline v0.65.1
12+
k8s.io/api v0.30.6
13+
k8s.io/apimachinery v0.30.6
14+
k8s.io/apiserver v0.30.6
15+
k8s.io/client-go v0.30.6
16+
k8s.io/utils v0.0.0-20240102154912-e7106e64919e
17+
knative.dev/pkg v0.0.0-20240416145024-0f34a8815650
18+
sigs.k8s.io/controller-runtime v0.18.5
1919
)
2020

2121
require (
2222
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
2323
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
24-
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
24+
github.com/ProtonMail/go-crypto v1.0.0 // indirect
25+
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
2526
github.com/beorn7/perks v1.0.1 // indirect
2627
github.com/blendle/zapdriver v1.3.1 // indirect
2728
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
28-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
29-
github.com/cloudflare/circl v1.3.7 // indirect
30-
github.com/davecgh/go-spew v1.1.1 // indirect
31-
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
32-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
33-
github.com/fsnotify/fsnotify v1.6.0 // indirect
34-
github.com/go-kit/log v0.2.1 // indirect
35-
github.com/go-logfmt/logfmt v0.6.0 // indirect
36-
github.com/go-logr/zapr v1.2.4 // indirect
37-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
38-
github.com/go-openapi/jsonreference v0.20.2 // indirect
39-
github.com/go-openapi/swag v0.22.4 // indirect
29+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
30+
github.com/cloudflare/circl v1.5.0 // indirect
31+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
32+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
33+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
34+
github.com/fsnotify/fsnotify v1.8.0 // indirect
35+
github.com/go-logr/zapr v1.3.0 // indirect
36+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
37+
github.com/go-openapi/jsonreference v0.21.0 // indirect
38+
github.com/go-openapi/swag v0.23.0 // indirect
4039
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4140
github.com/gogo/protobuf v1.3.2 // indirect
4241
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
43-
github.com/golang/protobuf v1.5.3 // indirect
44-
github.com/google/gnostic v0.6.9 // indirect
42+
github.com/golang/protobuf v1.5.4 // indirect
43+
github.com/google/cel-go v0.21.0 // indirect
44+
github.com/google/gnostic-models v0.6.8 // indirect
4545
github.com/google/go-cmp v0.6.0 // indirect
46-
github.com/google/go-containerregistry v0.19.1 // indirect
4746
github.com/google/go-querystring v1.1.0 // indirect
4847
github.com/google/gofuzz v1.2.0 // indirect
49-
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
50-
github.com/google/uuid v1.3.0 // indirect
51-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2 // indirect
48+
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
49+
github.com/google/uuid v1.6.0 // indirect
50+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
5251
github.com/hashicorp/errwrap v1.1.0 // indirect
5352
github.com/hashicorp/go-multierror v1.1.1 // indirect
5453
github.com/imdario/mergo v0.3.16 // indirect
5554
github.com/josharian/intern v1.0.0 // indirect
5655
github.com/json-iterator/go v1.1.12 // indirect
56+
github.com/klauspost/compress v1.17.11 // indirect
5757
github.com/mailru/easyjson v0.7.7 // indirect
5858
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5959
github.com/modern-go/reflect2 v1.0.2 // indirect
6060
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
61-
github.com/opencontainers/go-digest v1.0.0 // indirect
6261
github.com/pkg/errors v0.9.1 // indirect
63-
github.com/prometheus/client_golang v1.19.0 // indirect
64-
github.com/prometheus/client_model v0.6.0 // indirect
65-
github.com/prometheus/common v0.48.0 // indirect
66-
github.com/prometheus/procfs v0.12.0 // indirect
67-
github.com/prometheus/statsd_exporter v0.24.0 // indirect
62+
github.com/prometheus/client_golang v1.20.5 // indirect
63+
github.com/prometheus/client_model v0.6.1 // indirect
64+
github.com/prometheus/common v0.60.1 // indirect
65+
github.com/prometheus/procfs v0.15.1 // indirect
66+
github.com/prometheus/statsd_exporter v0.28.0 // indirect
6867
github.com/spf13/pflag v1.0.5 // indirect
68+
github.com/stoewer/go-strcase v1.3.0 // indirect
6969
go.opencensus.io v0.24.0 // indirect
70-
go.uber.org/atomic v1.11.0 // indirect
7170
go.uber.org/multierr v1.11.0 // indirect
7271
go.uber.org/zap v1.27.0 // indirect
73-
golang.org/x/crypto v0.23.0 // indirect
74-
golang.org/x/exp v0.0.0-20230307190834-24139beb5833 // indirect
75-
golang.org/x/net v0.25.0 // indirect
76-
golang.org/x/oauth2 v0.16.0 // indirect
77-
golang.org/x/sync v0.7.0 // indirect
78-
golang.org/x/sys v0.20.0 // indirect
79-
golang.org/x/term v0.20.0 // indirect
80-
golang.org/x/text v0.15.0 // indirect
81-
golang.org/x/time v0.3.0 // indirect
82-
golang.org/x/tools v0.21.0 // indirect
83-
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect
84-
google.golang.org/api v0.135.0 // indirect
85-
google.golang.org/appengine v1.6.7 // indirect
86-
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect
87-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect
88-
google.golang.org/grpc v1.58.3 // indirect
89-
google.golang.org/protobuf v1.33.0 // indirect
72+
golang.org/x/crypto v0.28.0 // indirect
73+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
74+
golang.org/x/net v0.30.0 // indirect
75+
golang.org/x/oauth2 v0.23.0 // indirect
76+
golang.org/x/sync v0.8.0 // indirect
77+
golang.org/x/sys v0.26.0 // indirect
78+
golang.org/x/term v0.25.0 // indirect
79+
golang.org/x/text v0.19.0 // indirect
80+
golang.org/x/time v0.7.0 // indirect
81+
golang.org/x/tools v0.26.0 // indirect
82+
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
83+
google.golang.org/api v0.204.0 // indirect
84+
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 // indirect
85+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect
86+
google.golang.org/grpc v1.67.1 // indirect
87+
google.golang.org/protobuf v1.35.1 // indirect
9088
gopkg.in/inf.v0 v0.9.1 // indirect
9189
gopkg.in/yaml.v2 v2.4.0 // indirect
9290
gopkg.in/yaml.v3 v3.0.1 // indirect
93-
k8s.io/apiextensions-apiserver v0.27.11 // indirect
94-
k8s.io/component-base v0.27.11 // indirect
95-
k8s.io/klog/v2 v2.100.1 // indirect
96-
k8s.io/kube-openapi v0.0.0-20230515203736-54b630e78af5 // indirect
91+
k8s.io/apiextensions-apiserver v0.30.6 // indirect
92+
k8s.io/klog/v2 v2.120.1 // indirect
93+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
9794
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
98-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
99-
sigs.k8s.io/yaml v1.3.0 // indirect
95+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
96+
sigs.k8s.io/yaml v1.4.0 // indirect
10097
)

0 commit comments

Comments
 (0)