Skip to content

Commit

Permalink
Update to v2.1.2 (#180)
Browse files Browse the repository at this point in the history
* Update to v2.1.2

* Update index.js
  • Loading branch information
jasonodonnell authored Jan 21, 2021
1 parent ff547e1 commit 5e5c06a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
# ...
- name: Import Secrets
uses: hashicorp/[email protected].1
uses: hashicorp/[email protected].2
with:
url: https://vault.mycompany.com:8200
token: ${{ secrets.VaultToken }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10772,7 +10772,7 @@ function selectData(data, selector) {
}

if (result.startsWith(`"`)) {
result = result.substring(1, result.length - 1);
result = JSON.parse(result);
}
return result;
}
Expand Down

0 comments on commit 5e5c06a

Please sign in to comment.