Compare commits

...

3 Commits

Author SHA1 Message Date
Jason O'Donnell 5e5c06a3c8 Update to v2.1.2 (#180)
* Update to v2.1.2

* Update index.js
2021-01-21 14:45:22 -05:00
Jason O'Donnell ff547e1516 changelog++ 2021-01-11 11:50:03 -05:00
bilucodota 1d4917ec58 - Support complex keys, such as yaml/json files (#173) 2021-01-11 11:47:51 -05:00
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
## Unreleased
## 2.1.2 (January 21st, 2021)
Bugs:
* fixed bug where newlines were being rendered for multi-line secrets [GH-173](https://github.com/hashicorp/vault-action/pull/173)
## 2.1.1 (December 15th, 2020)
Improvements:
+1 -1
View File
@@ -36,7 +36,7 @@ jobs:
steps:
# ...
- name: Import Secrets
uses: hashicorp/vault-action@v2.1.1
uses: hashicorp/vault-action@v2.1.2
with:
url: https://vault.mycompany.com:8200
token: ${{ secrets.VaultToken }}
+1 -1
View File
@@ -10772,7 +10772,7 @@ function selectData(data, selector) {
}
if (result.startsWith(`"`)) {
result = result.substring(1, result.length - 1);
result = JSON.parse(result);
}
return result;
}
+1 -1
View File
@@ -73,7 +73,7 @@ function selectData(data, selector) {
}
if (result.startsWith(`"`)) {
result = result.substring(1, result.length - 1);
result = JSON.parse(result);
}
return result;
}