Skip to content

Commit ece4304

Browse files
CLOUDP-119914: Bumped up golang.org/x/crypto/ssh (#502)
Bumped up golang.org/x/crypto/ssh
1 parent 0c16a61 commit ece4304

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/actions/set-tag/entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#set -eou pipefail
44

5+
git config --global --add safe.directory /github/workspace
6+
57
# Setup tag name
68
commit_id=$(git rev-parse --short HEAD)
79
branch_name=${GITHUB_HEAD_REF-}
@@ -10,4 +12,4 @@ if [ -z "${branch_name}" ]; then
1012
fi
1113
branch_name=$(echo "${branch_name}" | sed 's/\//-/g')
1214
tag="${branch_name}-${commit_id}"
13-
echo "::set-output name=tag::$tag"
15+
echo "::set-output name=tag::$tag"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156

157157
steps:
158158
- name: Check out code
159-
uses: actions/checkout@v2.4.0
159+
uses: actions/checkout@v3
160160
with:
161161
# Make sure we also get the helm-charts submodule!
162162
submodules: recursive

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ require (
9292
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
9393
go.uber.org/atomic v1.9.0 // indirect
9494
go.uber.org/multierr v1.7.0 // indirect
95-
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
95+
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
9696
golang.org/x/mod v0.5.0 // indirect
9797
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
9898
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,8 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y
737737
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
738738
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 h1:f+lwQ+GtmgoY+A2YaQxlSOnDjXcQ7ZRLWOHbC6HtRqE=
739739
golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
740+
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA=
741+
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
740742
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
741743
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
742744
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=

0 commit comments

Comments
 (0)