We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d13489b commit eb7e8bcCopy full SHA for eb7e8bc
packages/google-cloud-translate/.circleci/config.yml
@@ -116,7 +116,7 @@ jobs:
116
name: Decrypt credentials.
117
command: |
118
if ! [[ -z "${SYSTEM_TESTS_ENCRYPTION_KEY}" ]]; then
119
- openssl aes-256-cbc -d -in .circleci/key.json.enc \
+ openssl aes-256-cbc -d -md md5 -in .circleci/key.json.enc \
120
-out .circleci/key.json \
121
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
122
fi
@@ -148,7 +148,7 @@ jobs:
148
149
150
for encrypted_key in .circleci/*.json.enc; do
151
- openssl aes-256-cbc -d -in $encrypted_key \
+ openssl aes-256-cbc -d -md md5 -in $encrypted_key \
152
-out $(echo $encrypted_key | sed 's/\.enc//') \
153
154
done
0 commit comments