Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Create GitHub Deployment
id: defaults
continue-on-error: true # Setting to true so the job doesn't fail if updating the board fails.
uses: im-open/create-github-deployment@v1.0.8 # You may also reference just the major or major.minor version
uses: im-open/create-github-deployment@v1.0.9 # You may also reference just the major or major.minor version
with:
workflow-actor: ${{ github.actor }} # This will add the user who kicked off the workflow to the deployment payload
token: ${{ secrets.GITHUB_TOKEN }} # If a different token is used, update github-login with the corresponding account
Expand Down
30 changes: 30 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2405,6 +2405,7 @@ var require_decodeText = __commonJS({
return decoders.utf8;
case 'latin1':
case 'ascii':
// TODO: Make these a separate, strict decoder?
case 'us-ascii':
case 'iso-8859-1':
case 'iso8859-1':
Expand Down Expand Up @@ -3095,6 +3096,7 @@ var require_basename = __commonJS({
for (var i = path.length - 1; i >= 0; --i) {
switch (path.charCodeAt(i)) {
case 47:
// '/'
case 92:
path = path.slice(i + 1);
return path === '..' || path === '.' ? '' : path;
Expand Down Expand Up @@ -4242,7 +4244,21 @@ var require_util2 = __commonJS({
return referrerOrigin;
}
case 'strict-origin':
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
case 'no-referrer-when-downgrade':
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
default:
return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin;
}
Expand Down Expand Up @@ -23887,7 +23903,21 @@ var require_util9 = __commonJS({
return referrerOrigin;
}
case 'strict-origin':
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
case 'no-referrer-when-downgrade':
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
default:
return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin;
}
Expand Down