From 3dc0126a5d9bf427513d0b84b02094112821a2fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 23:13:10 +0000 Subject: [PATCH] Bump golang.org/x/crypto in /spec/functional_test/fixtures/go_echo Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.11.0 to 0.17.0. - [Commits](https://github.com/golang/crypto/compare/v0.11.0...v0.17.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: indirect ... Signed-off-by: dependabot[bot] --- spec/functional_test/fixtures/go_echo/go.mod | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/spec/functional_test/fixtures/go_echo/go.mod b/spec/functional_test/fixtures/go_echo/go.mod index cd9812d3..7cc62d27 100644 --- a/spec/functional_test/fixtures/go_echo/go.mod +++ b/spec/functional_test/fixtures/go_echo/go.mod @@ -2,15 +2,16 @@ module github.com/hahwul/test-go-app go 1.20 +require github.com/labstack/echo/v4 v4.11.1 + require ( - github.com/labstack/echo/v4 v4.11.1 // indirect github.com/labstack/gommon v0.4.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.2 // indirect - golang.org/x/crypto v0.11.0 // indirect + golang.org/x/crypto v0.17.0 // indirect golang.org/x/net v0.12.0 // indirect - golang.org/x/sys v0.10.0 // indirect - golang.org/x/text v0.11.0 // indirect -) \ No newline at end of file + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect +)