mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06:56 +00:00
Update to v2.3.1 (#242)
This commit is contained in:
parent
f3e4110f8d
commit
d5a69ceca1
3 changed files with 8 additions and 2 deletions
|
|
@ -1,5 +1,11 @@
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 2.3.1 (August 18th, 2021)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* bump normalize-url from 4.5.0 to 4.5.1 [GH-227](https://github.com/hashicorp/vault-action/pull/227)
|
||||||
|
* bump path-parse from 1.0.6 to 1.0.7 [GH-239](https://github.com/hashicorp/vault-action/pull/239)
|
||||||
|
|
||||||
## 2.3.0 (June 23rd, 2021)
|
## 2.3.0 (June 23rd, 2021)
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
# ...
|
# ...
|
||||||
- name: Import Secrets
|
- name: Import Secrets
|
||||||
uses: hashicorp/vault-action@v2.3.0
|
uses: hashicorp/vault-action@v2.3.1
|
||||||
with:
|
with:
|
||||||
url: https://vault.mycompany.com:8200
|
url: https://vault.mycompany.com:8200
|
||||||
token: ${{ secrets.VaultToken }}
|
token: ${{ secrets.VaultToken }}
|
||||||
|
|
|
||||||
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -434,7 +434,7 @@ const testParameter = (name, filters) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const normalizeDataURL = (urlString, {stripHash}) => {
|
const normalizeDataURL = (urlString, {stripHash}) => {
|
||||||
const parts = urlString.match(/^data:(.*?),(.*?)(?:#(.*))?$/);
|
const parts = urlString.match(/^data:([^,]*?),([^#]*?)(?:#(.*))?$/);
|
||||||
|
|
||||||
if (!parts) {
|
if (!parts) {
|
||||||
throw new Error(`Invalid URL: ${urlString}`);
|
throw new Error(`Invalid URL: ${urlString}`);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue