Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Commit 6b613b1

Browse files
chore: Update dependencies (#356)
* chore: Update dependencies Signed-off-by: Raphael Ludwig <[email protected]> * chore: Remove unneded GO version from unit tests action Signed-off-by: Raphael Ludwig <[email protected]> * chore: Update actions/setup-go to version 3.3.0 Signed-off-by: Raphael Ludwig <[email protected]> * chore: Update actions/github-script to 6.2.0 Signed-off-by: Raphael Ludwig <[email protected]> * chore: dawidd6/action-download-artifact to 2.23.0 Signed-off-by: Raphael Ludwig <[email protected]> * chore: c-py/action-dotenv-to-setenv to v4 Signed-off-by: Raphael Ludwig <[email protected]> Signed-off-by: Raphael Ludwig <[email protected]>
1 parent 1353261 commit 6b613b1

File tree

5 files changed

+131
-269
lines changed

5 files changed

+131
-269
lines changed

.github/actions/unit-tests/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: "Unit Tests"
22
description: "Run unit tests using go"
3-
inputs:
4-
GO_VERSION:
5-
default: "1.18"
63
env:
74
GO111MODULE: "on"
85
GOPROXY: "https://proxy.golang.org"

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126

127127
- name: Load CI Environment from .ci_env
128128
id: load_ci_env
129-
uses: c-py/action-dotenv-to-setenv@v3
129+
uses: c-py/action-dotenv-to-setenv@v4
130130
with:
131131
env-file: .ci_env
132132

@@ -213,7 +213,7 @@ jobs:
213213
uses: actions/[email protected]
214214

215215
- name: Set up Go
216-
uses: actions/setup-go@v3.2.1
216+
uses: actions/setup-go@v3.3.0
217217
with:
218218
go-version-file: "go.mod"
219219

.github/workflows/integration-tests.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
network-policy: [true, false]
3737
job-network-policy: [true, false]
3838
env:
39-
GO_VERSION: 1.18
4039
GOPROXY: "https://proxy.golang.org"
4140
GO111MODULE: "on"
4241
BRANCH: ${{ github.head_ref || github.ref_name }}
@@ -53,7 +52,7 @@ jobs:
5352
uses: actions/[email protected]
5453

5554
- name: Setup Go
56-
uses: actions/setup-go@v3.2.1
55+
uses: actions/setup-go@v3.3.0
5756
with:
5857
go-version-file: "go.mod"
5958

@@ -63,7 +62,7 @@ jobs:
6362

6463
# Download artifacts from last CI run
6564
- name: Download artifacts
66-
uses: dawidd6/action-download-artifact@v2.21.1
65+
uses: dawidd6/action-download-artifact@v2.23.0
6766
id: download_artifacts_push
6867
with:
6968
# Download last successful artifact from a CI build
@@ -272,7 +271,7 @@ jobs:
272271
# As output a markdown and a json version will be generated
273272
- name: Build final test report
274273
id: build_final_test_report
275-
uses: actions/github-script@v6.1.0
274+
uses: actions/github-script@v6.2.0
276275
env:
277276
TEST_REPORTS_PATH: ${{ env.TEST_REPORTS_PATH }}
278277
FINAL_TEST_REPORTS_FOLDER: ${{ env.FINAL_TEST_REPORTS_FOLDER }}

go.mod

Lines changed: 37 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -5,81 +5,78 @@ go 1.18
55
require (
66
github.com/Masterminds/semver/v3 v3.1.1
77
github.com/PaesslerAG/jsonpath v0.1.1
8-
github.com/cloudevents/sdk-go/v2 v2.10.1
8+
github.com/cloudevents/sdk-go/v2 v2.11.0
99
github.com/gobwas/glob v0.2.3
1010
github.com/golang/mock v1.6.0
1111
github.com/kelseyhightower/envconfig v1.4.0
1212
github.com/keptn/go-utils v0.18.1-0.20220829063445-1f5af67a8cf3
1313
github.com/mitchellh/mapstructure v1.5.0
14-
github.com/sirupsen/logrus v1.8.1
15-
github.com/spf13/afero v1.8.2
14+
github.com/sirupsen/logrus v1.9.0
15+
github.com/spf13/afero v1.9.2
1616
github.com/stretchr/testify v1.8.0
17-
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
18-
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c
17+
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
18+
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
1919
gopkg.in/yaml.v2 v2.4.0
20-
k8s.io/api v0.24.3
21-
k8s.io/apimachinery v0.24.3
22-
k8s.io/client-go v0.24.3
20+
k8s.io/api v0.24.4
21+
k8s.io/apimachinery v0.24.4
22+
k8s.io/client-go v0.24.4
2323
)
2424

2525
require (
26-
cloud.google.com/go/compute v1.7.0 // indirect
27-
github.com/PaesslerAG/gval v1.0.0 // indirect
28-
github.com/PuerkitoBio/purell v1.1.1 // indirect
29-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
26+
cloud.google.com/go/compute v1.9.0 // indirect
27+
github.com/PaesslerAG/gval v1.2.0 // indirect
3028
github.com/avast/retry-go v3.0.0+incompatible // indirect
3129
github.com/benbjohnson/clock v1.3.0 // indirect
32-
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.0.0-20211001212819-74757a691209 // indirect
30+
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.10.1 // indirect
3331
github.com/davecgh/go-spew v1.1.1 // indirect
34-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
32+
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
3533
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
36-
github.com/felixge/httpsnoop v1.0.2 // indirect
34+
github.com/felixge/httpsnoop v1.0.3 // indirect
3735
github.com/go-logr/logr v1.2.3 // indirect
3836
github.com/go-logr/stdr v1.2.2 // indirect
3937
github.com/go-openapi/jsonpointer v0.19.5 // indirect
40-
github.com/go-openapi/jsonreference v0.19.5 // indirect
41-
github.com/go-openapi/swag v0.19.14 // indirect
38+
github.com/go-openapi/jsonreference v0.20.0 // indirect
39+
github.com/go-openapi/swag v0.22.3 // indirect
4240
github.com/gogo/protobuf v1.3.2 // indirect
4341
github.com/golang/protobuf v1.5.2 // indirect
44-
github.com/google/gnostic v0.5.7-v3refs // indirect
42+
github.com/google/gnostic v0.6.9 // indirect
4543
github.com/google/gofuzz v1.2.0 // indirect
4644
github.com/google/uuid v1.3.0 // indirect
47-
github.com/imdario/mergo v0.3.12 // indirect
45+
github.com/imdario/mergo v0.3.13 // indirect
4846
github.com/josharian/intern v1.0.0 // indirect
4947
github.com/json-iterator/go v1.1.12 // indirect
50-
github.com/mailru/easyjson v0.7.6 // indirect
48+
github.com/kr/pretty v0.2.1 // indirect
49+
github.com/mailru/easyjson v0.7.7 // indirect
5150
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5251
github.com/modern-go/reflect2 v1.0.2 // indirect
5352
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5453
github.com/nats-io/nats.go v1.16.0 // indirect
5554
github.com/nats-io/nkeys v0.3.0 // indirect
5655
github.com/nats-io/nuid v1.0.1 // indirect
57-
github.com/nxadm/tail v1.4.8 // indirect
5856
github.com/pkg/errors v0.9.1 // indirect
5957
github.com/pmezard/go-difflib v1.0.0 // indirect
58+
github.com/shopspring/decimal v1.3.1 // indirect
6059
github.com/spf13/pflag v1.0.5 // indirect
61-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.32.0 // indirect
62-
go.opentelemetry.io/otel v1.7.0 // indirect
63-
go.opentelemetry.io/otel/metric v0.30.0 // indirect
64-
go.opentelemetry.io/otel/trace v1.7.0 // indirect
65-
go.uber.org/atomic v1.7.0 // indirect
66-
go.uber.org/multierr v1.6.0 // indirect
67-
go.uber.org/zap v1.19.0 // indirect
68-
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
69-
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
70-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
60+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.34.0 // indirect
61+
go.opentelemetry.io/otel v1.9.0 // indirect
62+
go.opentelemetry.io/otel/metric v0.31.0 // indirect
63+
go.opentelemetry.io/otel/trace v1.9.0 // indirect
64+
go.uber.org/atomic v1.10.0 // indirect
65+
go.uber.org/multierr v1.8.0 // indirect
66+
go.uber.org/zap v1.23.0 // indirect
67+
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect
68+
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
69+
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
7170
golang.org/x/text v0.3.7 // indirect
72-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
71+
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
7372
google.golang.org/appengine v1.6.7 // indirect
74-
google.golang.org/protobuf v1.28.0 // indirect
73+
google.golang.org/protobuf v1.28.1 // indirect
7574
gopkg.in/inf.v0 v0.9.1 // indirect
7675
gopkg.in/yaml.v3 v3.0.1 // indirect
77-
k8s.io/klog/v2 v2.60.1 // indirect
78-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
79-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
80-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
81-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
76+
k8s.io/klog/v2 v2.80.0 // indirect
77+
k8s.io/kube-openapi v0.0.0-20220803164354-a70c9af30aea // indirect
78+
k8s.io/utils v0.0.0-20220823124924-e9cbc92d1a73 // indirect
79+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
80+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
8281
sigs.k8s.io/yaml v1.3.0 // indirect
8382
)
84-
85-
replace github.com/emicklei/go-restful => github.com/emicklei/go-restful v2.16.0+incompatible // CVE-2022-1996

0 commit comments

Comments
 (0)