Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ReuDa committed Sep 15, 2023
1 parent e569d22 commit ee6f028
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 42 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ run: tidy build
## container: build the container image
.PHONY: container
container:
docker buildx build --build-arg BUILD_WITH_COVERAGE="true" -t extension-k6:latest --output=type=docker .
docker buildx build --build-arg BUILD_WITH_COVERAGE="true" -t extension-k6:latest --output=type=docker .

.PHONY: linuxpkg
linuxpkg:
Expand Down
3 changes: 2 additions & 1 deletion e2e/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
package e2e

import (
"github.com/steadybit/action-kit/go/action_kit_test/client"
"github.com/steadybit/action-kit/go/action_kit_test/e2e"
"github.com/stretchr/testify/require"
"testing"
Expand All @@ -28,7 +29,7 @@ func TestWithMinikube(t *testing.T) {

func testRunK6(t *testing.T, m *e2e.Minikube, e *e2e.Extension) {
config := struct{}{}
files := []e2e.File{
files := []client.File{
{
ParameterName: "file",
FileName: "script.js",
Expand Down
25 changes: 13 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/rs/zerolog v1.30.0
github.com/steadybit/action-kit/go/action_kit_api/v2 v2.7.2
github.com/steadybit/action-kit/go/action_kit_sdk v1.1.6
github.com/steadybit/action-kit/go/action_kit_test v1.0.9
github.com/steadybit/action-kit/go/action_kit_sdk v1.1.7
github.com/steadybit/action-kit/go/action_kit_test v1.2.0
github.com/steadybit/extension-kit v1.8.8
github.com/stretchr/testify v1.8.4
)
Expand All @@ -22,12 +22,12 @@ require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bytedance/sonic v1.10.0 // indirect
github.com/bytedance/sonic v1.10.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
github.com/chenzhuoyu/iasm v0.9.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/deepmap/oapi-codegen v1.14.0 // indirect
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
github.com/deepmap/oapi-codegen v1.15.0 // indirect
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/flosch/pongo2/v4 v4.0.2 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
Expand All @@ -40,13 +40,13 @@ require (
github.com/go-openapi/swag v0.22.4 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.15.3 // indirect
github.com/go-playground/validator/v10 v10.15.4 // indirect
github.com/go-resty/resty/v2 v2.7.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12 // indirect
github.com/gomarkdown/markdown v0.0.0-20230912175223-14b07df9d538 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/gofuzz v1.2.0 // indirect
Expand All @@ -58,7 +58,7 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/kataras/blocks v0.0.7 // indirect
github.com/kataras/golog v0.1.9 // indirect
github.com/kataras/iris/v12 v12.2.5 // indirect
github.com/kataras/iris/v12 v12.2.6-0.20230908161203-24ba4e8933b9 // indirect
github.com/kataras/pio v0.0.12 // indirect
github.com/kataras/sitemap v0.0.6 // indirect
github.com/kataras/tunnel v0.0.4 // indirect
Expand All @@ -85,7 +85,8 @@ require (
github.com/schollz/closestmatch v2.1.0+incompatible // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/steadybit/discovery-kit/go/discovery_kit_api v1.3.0 // indirect
github.com/steadybit/discovery-kit/go/discovery_kit_api v1.4.2 // indirect
github.com/steadybit/discovery-kit/go/discovery_kit_test v1.0.2 // indirect
github.com/tdewolff/minify/v2 v2.12.9 // indirect
github.com/tdewolff/parse/v2 v2.6.8 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
Expand All @@ -99,12 +100,12 @@ require (
golang.org/x/arch v0.5.0 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/oauth2 v0.12.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/term v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand All @@ -114,7 +115,7 @@ require (
k8s.io/apimachinery v0.29.0-alpha.0 // indirect
k8s.io/client-go v0.29.0-alpha.0 // indirect
k8s.io/klog/v2 v2.100.1 // indirect
k8s.io/kube-openapi v0.0.0-20230811205723-7ac0aad8c58d // indirect
k8s.io/kube-openapi v0.0.0-20230905202853-d090da108d2f // indirect
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
Expand Down
Loading

0 comments on commit ee6f028

Please sign in to comment.