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

Commit

Permalink
chore: Update dependencies (#356)
Browse files Browse the repository at this point in the history
* chore: Update dependencies

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

* chore: Remove unneded GO version from unit tests action

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

* chore: Update actions/setup-go to version 3.3.0

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

* chore: Update actions/github-script to 6.2.0

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

* chore: dawidd6/action-download-artifact to 2.23.0

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

* chore: c-py/action-dotenv-to-setenv to v4

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>

Signed-off-by: Raphael Ludwig <raphael.ludwig@dynatrace.com>
  • Loading branch information
Raffy23 authored Sep 7, 2022
1 parent 1353261 commit 6b613b1
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 269 deletions.
3 changes: 0 additions & 3 deletions .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: "Unit Tests"
description: "Run unit tests using go"
inputs:
GO_VERSION:
default: "1.18"
env:
GO111MODULE: "on"
GOPROXY: "https://proxy.golang.org"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Load CI Environment from .ci_env
id: load_ci_env
uses: c-py/action-dotenv-to-setenv@v3
uses: c-py/action-dotenv-to-setenv@v4
with:
env-file: .ci_env

Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
uses: actions/checkout@v3.0.2

- name: Set up Go
uses: actions/setup-go@v3.2.1
uses: actions/setup-go@v3.3.0
with:
go-version-file: "go.mod"

Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
network-policy: [true, false]
job-network-policy: [true, false]
env:
GO_VERSION: 1.18
GOPROXY: "https://proxy.golang.org"
GO111MODULE: "on"
BRANCH: ${{ github.head_ref || github.ref_name }}
Expand All @@ -53,7 +52,7 @@ jobs:
uses: actions/checkout@v3.0.2

- name: Setup Go
uses: actions/setup-go@v3.2.1
uses: actions/setup-go@v3.3.0
with:
go-version-file: "go.mod"

Expand All @@ -63,7 +62,7 @@ jobs:

# Download artifacts from last CI run
- name: Download artifacts
uses: dawidd6/action-download-artifact@v2.21.1
uses: dawidd6/action-download-artifact@v2.23.0
id: download_artifacts_push
with:
# Download last successful artifact from a CI build
Expand Down Expand Up @@ -272,7 +271,7 @@ jobs:
# As output a markdown and a json version will be generated
- name: Build final test report
id: build_final_test_report
uses: actions/github-script@v6.1.0
uses: actions/github-script@v6.2.0
env:
TEST_REPORTS_PATH: ${{ env.TEST_REPORTS_PATH }}
FINAL_TEST_REPORTS_FOLDER: ${{ env.FINAL_TEST_REPORTS_FOLDER }}
Expand Down
77 changes: 37 additions & 40 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,81 +5,78 @@ go 1.18
require (
github.com/Masterminds/semver/v3 v3.1.1
github.com/PaesslerAG/jsonpath v0.1.1
github.com/cloudevents/sdk-go/v2 v2.10.1
github.com/cloudevents/sdk-go/v2 v2.11.0
github.com/gobwas/glob v0.2.3
github.com/golang/mock v1.6.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/keptn/go-utils v0.18.1-0.20220829063445-1f5af67a8cf3
github.com/mitchellh/mapstructure v1.5.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/afero v1.8.2
github.com/sirupsen/logrus v1.9.0
github.com/spf13/afero v1.9.2
github.com/stretchr/testify v1.8.0
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.24.3
k8s.io/apimachinery v0.24.3
k8s.io/client-go v0.24.3
k8s.io/api v0.24.4
k8s.io/apimachinery v0.24.4
k8s.io/client-go v0.24.4
)

require (
cloud.google.com/go/compute v1.7.0 // indirect
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
cloud.google.com/go/compute v1.9.0 // indirect
github.com/PaesslerAG/gval v1.2.0 // indirect
github.com/avast/retry-go v3.0.0+incompatible // indirect
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.0.0-20211001212819-74757a691209 // indirect
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.10.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.19.5 // indirect
github.com/go-openapi/swag v0.19.14 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/gnostic v0.6.9 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/nats-io/nats.go v1.16.0 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.32.0 // indirect
go.opentelemetry.io/otel v1.7.0 // indirect
go.opentelemetry.io/otel/metric v0.30.0 // indirect
go.opentelemetry.io/otel/trace v1.7.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.19.0 // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.34.0 // indirect
go.opentelemetry.io/otel v1.9.0 // indirect
go.opentelemetry.io/otel/metric v0.31.0 // indirect
go.opentelemetry.io/otel/trace v1.9.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/klog/v2 v2.60.1 // indirect
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
k8s.io/klog/v2 v2.80.0 // indirect
k8s.io/kube-openapi v0.0.0-20220803164354-a70c9af30aea // indirect
k8s.io/utils v0.0.0-20220823124924-e9cbc92d1a73 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)

replace github.com/emicklei/go-restful => github.com/emicklei/go-restful v2.16.0+incompatible // CVE-2022-1996
Loading

0 comments on commit 6b613b1

Please sign in to comment.