Skip to content

Commit

Permalink
chore(release): 40.1.3 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Mar 4, 2024
1 parent 2a279ac commit 78bdcb3
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 37 deletions.
78 changes: 42 additions & 36 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11246,7 +11246,7 @@ module.exports = Dispatcher
"use strict";


const Busboy = __nccwpck_require__(6783)
const Busboy = __nccwpck_require__(6954)
const util = __nccwpck_require__(143)
const {
ReadableStreamFrom,
Expand Down Expand Up @@ -26491,7 +26491,7 @@ module.exports = require("zlib");

/***/ }),

/***/ 4712:
/***/ 5992:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand All @@ -26500,10 +26500,10 @@ module.exports = require("zlib");
const WritableStream = (__nccwpck_require__(4492).Writable)
const inherits = (__nccwpck_require__(7261).inherits)

const StreamSearch = __nccwpck_require__(2817)
const StreamSearch = __nccwpck_require__(3304)

const PartStream = __nccwpck_require__(501)
const HeaderParser = __nccwpck_require__(1233)
const PartStream = __nccwpck_require__(4215)
const HeaderParser = __nccwpck_require__(5412)

const DASH = 45
const B_ONEDASH = Buffer.from('-')
Expand Down Expand Up @@ -26575,7 +26575,7 @@ Dicer.prototype._write = function (data, encoding, cb) {
if (this._headerFirst && this._isPreamble) {
if (!this._part) {
this._part = new PartStream(this._partOpts)
if (this._events.preamble) { this.emit('preamble', this._part) } else { this._ignore() }
if (this.listenerCount('preamble') !== 0) { this.emit('preamble', this._part) } else { this._ignore() }
}
const r = this._hparser.push(data)
if (!this._inHeader && r !== undefined && r < data.length) { data = data.slice(r) } else { return cb() }
Expand Down Expand Up @@ -26632,7 +26632,7 @@ Dicer.prototype._oninfo = function (isMatch, data, start, end) {
}
}
if (this._dashes === 2) {
if ((start + i) < end && this._events.trailer) { this.emit('trailer', data.slice(start + i, end)) }
if ((start + i) < end && this.listenerCount('trailer') !== 0) { this.emit('trailer', data.slice(start + i, end)) }
this.reset()
this._finished = true
// no more parts will be added
Expand All @@ -26650,7 +26650,13 @@ Dicer.prototype._oninfo = function (isMatch, data, start, end) {
this._part._read = function (n) {
self._unpause()
}
if (this._isPreamble && this._events.preamble) { this.emit('preamble', this._part) } else if (this._isPreamble !== true && this._events.part) { this.emit('part', this._part) } else { this._ignore() }
if (this._isPreamble && this.listenerCount('preamble') !== 0) {
this.emit('preamble', this._part)
} else if (this._isPreamble !== true && this.listenerCount('part') !== 0) {
this.emit('part', this._part)
} else {
this._ignore()
}
if (!this._isPreamble) { this._inHeader = true }
}
if (data && start < end && !this._ignoreData) {
Expand Down Expand Up @@ -26706,17 +26712,17 @@ module.exports = Dicer

/***/ }),

/***/ 1233:
/***/ 5412:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const EventEmitter = (__nccwpck_require__(5673).EventEmitter)
const inherits = (__nccwpck_require__(7261).inherits)
const getLimit = __nccwpck_require__(8689)
const getLimit = __nccwpck_require__(2160)

const StreamSearch = __nccwpck_require__(2817)
const StreamSearch = __nccwpck_require__(3304)

const B_DCRLF = Buffer.from('\r\n\r\n')
const RE_CRLF = /\r\n/g
Expand Down Expand Up @@ -26814,7 +26820,7 @@ module.exports = HeaderParser

/***/ }),

/***/ 501:
/***/ 4215:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand All @@ -26835,7 +26841,7 @@ module.exports = PartStream

/***/ }),

/***/ 2817:
/***/ 3304:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand Down Expand Up @@ -27071,19 +27077,19 @@ module.exports = SBMH

/***/ }),

/***/ 6783:
/***/ 6954:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const WritableStream = (__nccwpck_require__(4492).Writable)
const { inherits } = __nccwpck_require__(7261)
const Dicer = __nccwpck_require__(4712)
const Dicer = __nccwpck_require__(5992)

const MultipartParser = __nccwpck_require__(7197)
const UrlencodedParser = __nccwpck_require__(3373)
const parseParams = __nccwpck_require__(5764)
const MultipartParser = __nccwpck_require__(6311)
const UrlencodedParser = __nccwpck_require__(6173)
const parseParams = __nccwpck_require__(3576)

function Busboy (opts) {
if (!(this instanceof Busboy)) { return new Busboy(opts) }
Expand Down Expand Up @@ -27164,7 +27170,7 @@ module.exports.Dicer = Dicer

/***/ }),

/***/ 7197:
/***/ 6311:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
Expand All @@ -27180,12 +27186,12 @@ module.exports.Dicer = Dicer
const { Readable } = __nccwpck_require__(4492)
const { inherits } = __nccwpck_require__(7261)

const Dicer = __nccwpck_require__(4712)
const Dicer = __nccwpck_require__(5992)

const parseParams = __nccwpck_require__(5764)
const decodeText = __nccwpck_require__(9028)
const basename = __nccwpck_require__(3180)
const getLimit = __nccwpck_require__(8689)
const parseParams = __nccwpck_require__(3576)
const decodeText = __nccwpck_require__(884)
const basename = __nccwpck_require__(6504)
const getLimit = __nccwpck_require__(2160)

const RE_BOUNDARY = /^boundary$/i
const RE_FIELD = /^form-data$/i
Expand Down Expand Up @@ -27333,7 +27339,7 @@ function Multipart (boy, cfg) {

++nfiles

if (!boy._events.file) {
if (boy.listenerCount('file') === 0) {
self.parser._ignore()
return
}
Expand Down Expand Up @@ -27478,15 +27484,15 @@ module.exports = Multipart

/***/ }),

/***/ 3373:
/***/ 6173:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";


const Decoder = __nccwpck_require__(7306)
const decodeText = __nccwpck_require__(9028)
const getLimit = __nccwpck_require__(8689)
const Decoder = __nccwpck_require__(9687)
const decodeText = __nccwpck_require__(884)
const getLimit = __nccwpck_require__(2160)

const RE_CHARSET = /^charset$/i

Expand Down Expand Up @@ -27676,7 +27682,7 @@ module.exports = UrlEncoded

/***/ }),

/***/ 7306:
/***/ 9687:
/***/ ((module) => {

"use strict";
Expand Down Expand Up @@ -27738,7 +27744,7 @@ module.exports = Decoder

/***/ }),

/***/ 3180:
/***/ 6504:
/***/ ((module) => {

"use strict";
Expand All @@ -27760,7 +27766,7 @@ module.exports = function basename (path) {

/***/ }),

/***/ 9028:
/***/ 884:
/***/ (function(module) {

"use strict";
Expand Down Expand Up @@ -27862,7 +27868,7 @@ const decoders = {
if (textDecoders.has(this.toString())) {
try {
return textDecoders.get(this).decode(data)
} catch (e) { }
} catch {}
}
return typeof data === 'string'
? data
Expand All @@ -27882,7 +27888,7 @@ module.exports = decodeText

/***/ }),

/***/ 8689:
/***/ 2160:
/***/ ((module) => {

"use strict";
Expand All @@ -27906,14 +27912,14 @@ module.exports = function getLimit (limits, name, defaultLimit) {

/***/ }),

/***/ 5764:
/***/ 3576:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
/* eslint-disable object-property-newline */


const decodeText = __nccwpck_require__(9028)
const decodeText = __nccwpck_require__(884)

const RE_ENCODED = /%[a-fA-F0-9][a-fA-F0-9]/g

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action",
"version": "40.1.2",
"version": "40.1.3",
"private": true,
"description": "GitHub Action to run Renovate self-hosted.",
"homepage": "https://github.com/renovatebot/github-action#readme",
Expand Down

0 comments on commit 78bdcb3

Please sign in to comment.