mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-19 15:04:45 +02:00
Bump glob from 7.1.6 to 7.1.7 (#10)
* Bump glob from 7.1.6 to 7.1.7 Bumps [glob](https://github.com/isaacs/node-glob) from 7.1.6 to 7.1.7. - [Release notes](https://github.com/isaacs/node-glob/releases) - [Changelog](https://github.com/isaacs/node-glob/blob/master/changelog.md) - [Commits](https://github.com/isaacs/node-glob/compare/v7.1.6...v7.1.7) --- updated-dependencies: - dependency-name: glob dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update license and index.js Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: MOREL Matthieu <matthieu.morel@cnp.fr>
This commit is contained in:
parent
0b4eef1d0a
commit
1bd916081b
4 changed files with 7 additions and 17 deletions
2
.licenses/npm/glob.dep.yml
generated
2
.licenses/npm/glob.dep.yml
generated
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
name: glob
|
||||
version: 7.1.6
|
||||
version: 7.1.7
|
||||
type: npm
|
||||
summary: a little globber
|
||||
homepage: https://github.com/isaacs/node-glob#readme
|
||||
|
|
14
dist/index.js
vendored
14
dist/index.js
vendored
|
@ -2687,8 +2687,6 @@ var path = __webpack_require__(622)
|
|||
var assert = __webpack_require__(357)
|
||||
var isAbsolute = __webpack_require__(681)
|
||||
var common = __webpack_require__(856)
|
||||
var alphasort = common.alphasort
|
||||
var alphasorti = common.alphasorti
|
||||
var setopts = common.setopts
|
||||
var ownProp = common.ownProp
|
||||
var childrenIgnored = common.childrenIgnored
|
||||
|
@ -4308,8 +4306,6 @@ var assert = __webpack_require__(357)
|
|||
var isAbsolute = __webpack_require__(681)
|
||||
var globSync = __webpack_require__(245)
|
||||
var common = __webpack_require__(856)
|
||||
var alphasort = common.alphasort
|
||||
var alphasorti = common.alphasorti
|
||||
var setopts = common.setopts
|
||||
var ownProp = common.ownProp
|
||||
var inflight = __webpack_require__(674)
|
||||
|
@ -8209,8 +8205,6 @@ exports.DownloadHttpClient = DownloadHttpClient;
|
|||
/***/ 856:
|
||||
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
||||
|
||||
exports.alphasort = alphasort
|
||||
exports.alphasorti = alphasorti
|
||||
exports.setopts = setopts
|
||||
exports.ownProp = ownProp
|
||||
exports.makeAbs = makeAbs
|
||||
|
@ -8228,12 +8222,8 @@ var minimatch = __webpack_require__(93)
|
|||
var isAbsolute = __webpack_require__(681)
|
||||
var Minimatch = minimatch.Minimatch
|
||||
|
||||
function alphasorti (a, b) {
|
||||
return a.toLowerCase().localeCompare(b.toLowerCase())
|
||||
}
|
||||
|
||||
function alphasort (a, b) {
|
||||
return a.localeCompare(b)
|
||||
return a.localeCompare(b, 'en')
|
||||
}
|
||||
|
||||
function setupIgnores (self, options) {
|
||||
|
@ -8361,7 +8351,7 @@ function finish (self) {
|
|||
all = Object.keys(all)
|
||||
|
||||
if (!self.nosort)
|
||||
all = all.sort(self.nocase ? alphasorti : alphasort)
|
||||
all = all.sort(alphasort)
|
||||
|
||||
// at *some* point we statted all of these
|
||||
if (self.mark) {
|
||||
|
|
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -4875,9 +4875,9 @@
|
|||
}
|
||||
},
|
||||
"glob": {
|
||||
"version": "7.1.6",
|
||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
||||
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
||||
"version": "7.1.7",
|
||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
|
||||
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
|
||||
"requires": {
|
||||
"fs.realpath": "^1.0.0",
|
||||
"inflight": "^1.0.4",
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"eslint": "^7.31.0",
|
||||
"eslint-plugin-github": "^4.1.5",
|
||||
"eslint-plugin-jest": "^24.4.0",
|
||||
"glob": "^7.1.6",
|
||||
"glob": "^7.1.7",
|
||||
"jest": "^26.6.3",
|
||||
"jest-circus": "^27.0.6",
|
||||
"prettier": "^2.3.2",
|
||||
|
|
Loading…
Add table
Reference in a new issue