Skip to content

Commit

Permalink
Update action distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored May 28, 2024
1 parent 971be7e commit e0fd072
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions upload-multi-artifact/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82283,12 +82283,11 @@ readdirGlob.ReaddirGlob = ReaddirGlob;
continue;
}

if (parser.doctype && parser.doctype !== true) {
parser.sgmlDecl += c
continue;
}

if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
if (parser.doctype && parser.doctype !== true && parser.sgmlDecl) {
parser.state = S.DOCTYPE_DTD
parser.doctype += '<!' + parser.sgmlDecl + c
parser.sgmlDecl = ''
} else if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
emitNode(parser, 'onopencdata')
parser.state = S.CDATA
parser.sgmlDecl = ''
Expand Down Expand Up @@ -82356,6 +82355,8 @@ readdirGlob.ReaddirGlob = ReaddirGlob;
parser.doctype += c
parser.state = S.DOCTYPE_DTD_QUOTED
parser.q = c
} else {
parser.doctype += c
}
continue

Expand Down
4 changes: 2 additions & 2 deletions upload-multi-artifact/dist/licenses.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2968,7 +2968,7 @@ sax
ISC
The ISC License

Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors
Copyright (c) 2010-2024 Isaac Z. Schlueter and Contributors

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand All @@ -2987,7 +2987,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
License, as follows:

Copyright (c) 2010-2023 Mathias Bynens <https://mathiasbynens.be/>
Copyright (c) 2010-2024 Mathias Bynens <https://mathiasbynens.be/>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down

0 comments on commit e0fd072

Please sign in to comment.