@relative-ci/core 5.3.0-beta.1 → 5.3.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (704) hide show
  1. package/lib/cjs/__/@actions/http-client/__/undici/index.js +226 -0
  2. package/lib/cjs/__/@actions/http-client/__/undici/index.js.map +1 -0
  3. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js +73 -0
  4. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
  5. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js +131 -0
  6. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
  7. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +276 -0
  8. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
  9. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js +238 -0
  10. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
  11. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js +246 -0
  12. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
  13. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +131 -0
  14. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
  15. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js +25 -0
  16. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
  17. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js +405 -0
  18. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
  19. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js +114 -0
  20. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
  21. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js +266 -0
  22. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
  23. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js +130 -0
  24. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
  25. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js +222 -0
  26. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
  27. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js +418 -0
  28. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
  29. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js +417 -0
  30. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
  31. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js +80 -0
  32. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
  33. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js +166 -0
  34. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
  35. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js +755 -0
  36. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
  37. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +149 -0
  38. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
  39. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +227 -0
  40. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
  41. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1397 -0
  42. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
  43. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +768 -0
  44. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
  45. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js +650 -0
  46. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
  47. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +206 -0
  48. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
  49. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +83 -0
  50. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
  51. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +177 -0
  52. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
  53. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +129 -0
  54. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
  55. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +211 -0
  56. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
  57. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +49 -0
  58. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
  59. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +126 -0
  60. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
  61. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +299 -0
  62. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
  63. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +50 -0
  64. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
  65. package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js +47 -0
  66. package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
  67. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +56 -0
  68. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
  69. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +237 -0
  70. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
  71. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +395 -0
  72. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
  73. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js +397 -0
  74. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
  75. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js +139 -0
  76. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
  77. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +35 -0
  78. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
  79. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +38 -0
  80. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
  81. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js +33 -0
  82. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
  83. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js +288 -0
  84. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
  85. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +23 -0
  86. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
  87. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +23 -0
  88. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
  89. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js +28 -0
  90. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
  91. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +183 -0
  92. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
  93. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js +83 -0
  94. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
  95. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +42 -0
  96. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
  97. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +224 -0
  98. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
  99. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +83 -0
  100. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
  101. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +35 -0
  102. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
  103. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +390 -0
  104. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
  105. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +63 -0
  106. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
  107. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +41 -0
  108. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
  109. package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js +435 -0
  110. package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
  111. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js +886 -0
  112. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
  113. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +169 -0
  114. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
  115. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +19 -0
  116. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
  117. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js +65 -0
  118. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
  119. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +24 -0
  120. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
  121. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js +201 -0
  122. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
  123. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +338 -0
  124. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
  125. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js +294 -0
  126. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
  127. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +417 -0
  128. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
  129. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +508 -0
  130. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
  131. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +49 -0
  132. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
  133. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js +560 -0
  134. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
  135. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +136 -0
  136. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
  137. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +762 -0
  138. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
  139. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +60 -0
  140. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
  141. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js +146 -0
  142. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
  143. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +499 -0
  144. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
  145. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +275 -0
  146. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
  147. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js +52 -0
  148. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
  149. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +709 -0
  150. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
  151. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2235 -0
  152. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
  153. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1069 -0
  154. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
  155. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js +640 -0
  156. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
  157. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +21 -0
  158. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
  159. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1662 -0
  160. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
  161. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +716 -0
  162. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
  163. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +302 -0
  164. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
  165. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +361 -0
  166. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
  167. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +92 -0
  168. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
  169. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +22 -0
  170. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
  171. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +417 -0
  172. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
  173. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +391 -0
  174. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
  175. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +78 -0
  176. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
  177. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js +350 -0
  178. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
  179. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +110 -0
  180. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
  181. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +89 -0
  182. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
  183. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +451 -0
  184. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
  185. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +120 -0
  186. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
  187. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +24 -0
  188. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
  189. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js +336 -0
  190. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
  191. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +618 -0
  192. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
  193. package/lib/cjs/__/@actions/http-client/lib/index.js +2 -2
  194. package/lib/cjs/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
  195. package/lib/cjs/__/@octokit/core/dist-src/index.js.map +1 -0
  196. package/lib/cjs/__/@octokit/core/dist-src/version.js.map +1 -0
  197. package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
  198. package/lib/cjs/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
  199. package/lib/cjs/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
  200. package/lib/cjs/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
  201. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
  202. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
  203. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
  204. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
  205. package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
  206. package/lib/cjs/__/@octokit/request/dist-bundle/index.js.map +1 -0
  207. package/lib/cjs/__/@octokit/request-error/dist-src/index.js.map +1 -0
  208. package/lib/cjs/__/before-after-hook/index.js.map +1 -0
  209. package/lib/cjs/__/before-after-hook/lib/add.js.map +1 -0
  210. package/lib/cjs/__/before-after-hook/lib/register.js.map +1 -0
  211. package/lib/cjs/__/before-after-hook/lib/remove.js.map +1 -0
  212. package/lib/cjs/__/cross-spawn/index.js +1 -1
  213. package/lib/cjs/__/env-ci/lib/git.js +1 -1
  214. package/lib/cjs/__/{env-ci/__/execa → execa}/index.js +3 -3
  215. package/lib/cjs/__/execa/index.js.map +1 -0
  216. package/lib/cjs/__/execa/lib/command.js.map +1 -0
  217. package/lib/cjs/__/execa/lib/error.js.map +1 -0
  218. package/lib/cjs/__/execa/lib/promise.js.map +1 -0
  219. package/lib/cjs/__/execa/lib/stdio.js.map +1 -0
  220. package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
  221. package/lib/cjs/__/execa/lib/stream.js.map +1 -0
  222. package/lib/cjs/__/execa/lib/verbose.js.map +1 -0
  223. package/lib/cjs/__/get-stream/source/array-buffer.js.map +1 -0
  224. package/lib/cjs/__/human-signals/build/src/core.js.map +1 -0
  225. package/lib/cjs/__/human-signals/build/src/main.js.map +1 -0
  226. package/lib/cjs/__/human-signals/build/src/realtime.js.map +1 -0
  227. package/lib/cjs/__/human-signals/build/src/signals.js.map +1 -0
  228. package/lib/cjs/__/is-stream/index.js.map +1 -0
  229. package/lib/cjs/__/json-with-bigint/json-with-bigint.js +151 -0
  230. package/lib/cjs/__/json-with-bigint/json-with-bigint.js.map +1 -0
  231. package/lib/cjs/__/npm-run-path/__/path-key/index.js.map +1 -0
  232. package/lib/cjs/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
  233. package/lib/cjs/__/npm-run-path/index.js.map +1 -0
  234. package/lib/cjs/__/path-key/index.js +1 -1
  235. package/lib/cjs/__/signal-exit/dist/mjs/index.js.map +1 -0
  236. package/lib/cjs/__/signal-exit/dist/mjs/signals.js.map +1 -0
  237. package/lib/cjs/__/strip-final-newline/index.js.map +1 -0
  238. package/lib/cjs/__/undici/index.js +1 -1
  239. package/lib/cjs/__/undici/lib/api/api-connect.js +3 -3
  240. package/lib/cjs/__/undici/lib/api/api-pipeline.js +3 -3
  241. package/lib/cjs/__/undici/lib/api/api-request.js +3 -3
  242. package/lib/cjs/__/undici/lib/api/api-stream.js +3 -3
  243. package/lib/cjs/__/undici/lib/api/api-upgrade.js +3 -3
  244. package/lib/cjs/__/undici/lib/core/util.js +14 -14
  245. package/lib/cjs/__/undici/lib/fetch/body.js +8 -8
  246. package/lib/cjs/__/undici/lib/fetch/constants.js +3 -3
  247. package/lib/cjs/__/undici/lib/fetch/dataURL.js +5 -5
  248. package/lib/cjs/__/undici/lib/fetch/file.js +3 -3
  249. package/lib/cjs/__/undici/lib/fetch/formdata.js +3 -3
  250. package/lib/cjs/__/undici/lib/fetch/index.js +3 -3
  251. package/lib/cjs/__/undici/lib/fetch/index.js.map +1 -1
  252. package/lib/cjs/__/undici/lib/fetch/util.js +6 -6
  253. package/lib/cjs/__/undici/lib/fileapi/util.js +6 -6
  254. package/lib/cjs/__/undici/lib/websocket/events.js +3 -3
  255. package/lib/cjs/__/universal-user-agent/index.js.map +1 -0
  256. package/lib/cjs/_virtual/api-request2.js +6 -0
  257. package/lib/cjs/_virtual/api-request2.js.map +1 -0
  258. package/lib/cjs/_virtual/constants2.js +6 -0
  259. package/lib/cjs/_virtual/constants2.js.map +1 -0
  260. package/lib/cjs/_virtual/index10.js +2 -2
  261. package/lib/cjs/_virtual/index11.js +2 -2
  262. package/lib/cjs/_virtual/index14.js +2 -2
  263. package/lib/cjs/_virtual/index15.js +6 -0
  264. package/lib/cjs/_virtual/index15.js.map +1 -0
  265. package/lib/cjs/_virtual/index16.js +6 -0
  266. package/lib/cjs/_virtual/index16.js.map +1 -0
  267. package/lib/cjs/_virtual/index2.js +1 -1
  268. package/lib/cjs/_virtual/index3.js +1 -1
  269. package/lib/cjs/_virtual/index4.js +1 -1
  270. package/lib/cjs/_virtual/index8.js +2 -2
  271. package/lib/cjs/_virtual/mock-interceptor2.js +6 -0
  272. package/lib/cjs/_virtual/mock-interceptor2.js.map +1 -0
  273. package/lib/cjs/_virtual/utils4.js +6 -0
  274. package/lib/cjs/_virtual/utils4.js.map +1 -0
  275. package/lib/cjs/env/load.js +1 -1
  276. package/lib/cjs/env/load.js.map +1 -1
  277. package/lib/esm/__/@actions/http-client/__/undici/index.js +220 -0
  278. package/lib/esm/__/@actions/http-client/__/undici/index.js.map +1 -0
  279. package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js +71 -0
  280. package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
  281. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js +124 -0
  282. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
  283. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +268 -0
  284. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
  285. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js +231 -0
  286. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
  287. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js +238 -0
  288. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
  289. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +124 -0
  290. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
  291. package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js +23 -0
  292. package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
  293. package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js +398 -0
  294. package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
  295. package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js +108 -0
  296. package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
  297. package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js +258 -0
  298. package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
  299. package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js +128 -0
  300. package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
  301. package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js +215 -0
  302. package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
  303. package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js +416 -0
  304. package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
  305. package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js +411 -0
  306. package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
  307. package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js +78 -0
  308. package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
  309. package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js +164 -0
  310. package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
  311. package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js +742 -0
  312. package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
  313. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +147 -0
  314. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
  315. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +225 -0
  316. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
  317. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1391 -0
  318. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
  319. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +761 -0
  320. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
  321. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js +642 -0
  322. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
  323. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +204 -0
  324. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
  325. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +77 -0
  326. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
  327. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +175 -0
  328. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
  329. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +127 -0
  330. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
  331. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +209 -0
  332. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
  333. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +47 -0
  334. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
  335. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +124 -0
  336. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
  337. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +293 -0
  338. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
  339. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +48 -0
  340. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
  341. package/lib/esm/__/@actions/http-client/__/undici/lib/global.js +45 -0
  342. package/lib/esm/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
  343. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +54 -0
  344. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
  345. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +230 -0
  346. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
  347. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +389 -0
  348. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
  349. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js +390 -0
  350. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
  351. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js +137 -0
  352. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
  353. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +33 -0
  354. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
  355. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +36 -0
  356. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
  357. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js +31 -0
  358. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
  359. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js +286 -0
  360. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
  361. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +17 -0
  362. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
  363. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +17 -0
  364. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
  365. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js +26 -0
  366. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
  367. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +181 -0
  368. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
  369. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js +77 -0
  370. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
  371. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +40 -0
  372. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
  373. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +222 -0
  374. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
  375. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +77 -0
  376. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
  377. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +33 -0
  378. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
  379. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +383 -0
  380. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
  381. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +56 -0
  382. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
  383. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +39 -0
  384. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
  385. package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js +433 -0
  386. package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
  387. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js +880 -0
  388. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
  389. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +167 -0
  390. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
  391. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +17 -0
  392. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
  393. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js +59 -0
  394. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
  395. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +22 -0
  396. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
  397. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js +199 -0
  398. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
  399. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +332 -0
  400. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
  401. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js +292 -0
  402. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
  403. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +411 -0
  404. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
  405. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +502 -0
  406. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
  407. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +47 -0
  408. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
  409. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js +551 -0
  410. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
  411. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +134 -0
  412. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
  413. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +756 -0
  414. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
  415. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +58 -0
  416. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
  417. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js +140 -0
  418. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
  419. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +492 -0
  420. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
  421. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +268 -0
  422. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
  423. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js +50 -0
  424. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
  425. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +702 -0
  426. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
  427. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2224 -0
  428. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
  429. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1061 -0
  430. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
  431. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js +633 -0
  432. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
  433. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +19 -0
  434. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
  435. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1652 -0
  436. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
  437. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +709 -0
  438. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
  439. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +300 -0
  440. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
  441. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +359 -0
  442. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
  443. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +90 -0
  444. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
  445. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +20 -0
  446. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
  447. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +409 -0
  448. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
  449. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +389 -0
  450. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
  451. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +76 -0
  452. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
  453. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js +344 -0
  454. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
  455. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +108 -0
  456. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
  457. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +83 -0
  458. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
  459. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +444 -0
  460. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
  461. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +118 -0
  462. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
  463. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +22 -0
  464. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
  465. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js +330 -0
  466. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
  467. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +612 -0
  468. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
  469. package/lib/esm/__/@actions/http-client/lib/index.js +2 -2
  470. package/lib/esm/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
  471. package/lib/esm/__/@octokit/core/dist-src/index.js.map +1 -0
  472. package/lib/esm/__/@octokit/core/dist-src/version.js.map +1 -0
  473. package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
  474. package/lib/esm/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
  475. package/lib/esm/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
  476. package/lib/esm/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
  477. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
  478. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
  479. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
  480. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
  481. package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
  482. package/lib/esm/__/@octokit/request/dist-bundle/index.js.map +1 -0
  483. package/lib/esm/__/@octokit/request-error/dist-src/index.js.map +1 -0
  484. package/lib/esm/__/before-after-hook/index.js.map +1 -0
  485. package/lib/esm/__/before-after-hook/lib/add.js.map +1 -0
  486. package/lib/esm/__/before-after-hook/lib/register.js.map +1 -0
  487. package/lib/esm/__/before-after-hook/lib/remove.js.map +1 -0
  488. package/lib/esm/__/cross-spawn/index.js +1 -1
  489. package/lib/esm/__/env-ci/lib/git.js +1 -1
  490. package/lib/esm/__/{env-ci/__/execa → execa}/index.js +1 -1
  491. package/lib/esm/__/execa/index.js.map +1 -0
  492. package/lib/esm/__/execa/lib/command.js.map +1 -0
  493. package/lib/esm/__/execa/lib/error.js.map +1 -0
  494. package/lib/esm/__/execa/lib/promise.js.map +1 -0
  495. package/lib/esm/__/execa/lib/stdio.js.map +1 -0
  496. package/lib/esm/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
  497. package/lib/esm/__/execa/lib/stream.js.map +1 -0
  498. package/lib/esm/__/execa/lib/verbose.js.map +1 -0
  499. package/lib/esm/__/get-stream/source/array-buffer.js.map +1 -0
  500. package/lib/esm/__/human-signals/build/src/core.js.map +1 -0
  501. package/lib/esm/__/human-signals/build/src/main.js.map +1 -0
  502. package/lib/esm/__/human-signals/build/src/realtime.js.map +1 -0
  503. package/lib/esm/__/human-signals/build/src/signals.js.map +1 -0
  504. package/lib/esm/__/is-stream/index.js.map +1 -0
  505. package/lib/esm/__/java-properties/dist-node/index.js +1 -1
  506. package/lib/esm/__/json-with-bigint/json-with-bigint.js +148 -0
  507. package/lib/esm/__/json-with-bigint/json-with-bigint.js.map +1 -0
  508. package/lib/esm/__/npm-run-path/__/path-key/index.js.map +1 -0
  509. package/lib/esm/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
  510. package/lib/esm/__/npm-run-path/index.js.map +1 -0
  511. package/lib/esm/__/path-key/index.js +1 -1
  512. package/lib/esm/__/signal-exit/dist/mjs/index.js.map +1 -0
  513. package/lib/esm/__/signal-exit/dist/mjs/signals.js.map +1 -0
  514. package/lib/esm/__/strip-final-newline/index.js.map +1 -0
  515. package/lib/esm/__/undici/index.js +1 -1
  516. package/lib/esm/__/undici/lib/api/api-connect.js +2 -2
  517. package/lib/esm/__/undici/lib/api/api-pipeline.js +2 -2
  518. package/lib/esm/__/undici/lib/api/api-request.js +2 -2
  519. package/lib/esm/__/undici/lib/api/api-request.js.map +1 -1
  520. package/lib/esm/__/undici/lib/api/api-stream.js +2 -2
  521. package/lib/esm/__/undici/lib/api/api-stream.js.map +1 -1
  522. package/lib/esm/__/undici/lib/api/api-upgrade.js +2 -2
  523. package/lib/esm/__/undici/lib/api/api-upgrade.js.map +1 -1
  524. package/lib/esm/__/undici/lib/core/util.js +10 -10
  525. package/lib/esm/__/undici/lib/core/util.js.map +1 -1
  526. package/lib/esm/__/undici/lib/fetch/body.js +6 -6
  527. package/lib/esm/__/undici/lib/fetch/body.js.map +1 -1
  528. package/lib/esm/__/undici/lib/fetch/constants.js +2 -2
  529. package/lib/esm/__/undici/lib/fetch/constants.js.map +1 -1
  530. package/lib/esm/__/undici/lib/fetch/dataURL.js +4 -4
  531. package/lib/esm/__/undici/lib/fetch/dataURL.js.map +1 -1
  532. package/lib/esm/__/undici/lib/fetch/file.js +2 -2
  533. package/lib/esm/__/undici/lib/fetch/file.js.map +1 -1
  534. package/lib/esm/__/undici/lib/fetch/formdata.js +2 -2
  535. package/lib/esm/__/undici/lib/fetch/index.js +2 -2
  536. package/lib/esm/__/undici/lib/fetch/index.js.map +1 -1
  537. package/lib/esm/__/undici/lib/fetch/util.js +4 -4
  538. package/lib/esm/__/undici/lib/fetch/util.js.map +1 -1
  539. package/lib/esm/__/undici/lib/fileapi/util.js +4 -4
  540. package/lib/esm/__/undici/lib/fileapi/util.js.map +1 -1
  541. package/lib/esm/__/undici/lib/websocket/events.js +2 -2
  542. package/lib/esm/__/universal-user-agent/index.js.map +1 -0
  543. package/lib/esm/_virtual/api-request2.js +4 -0
  544. package/lib/esm/_virtual/api-request2.js.map +1 -0
  545. package/lib/esm/_virtual/constants2.js +4 -0
  546. package/lib/esm/_virtual/constants2.js.map +1 -0
  547. package/lib/esm/_virtual/index10.js +4 -2
  548. package/lib/esm/_virtual/index10.js.map +1 -1
  549. package/lib/esm/_virtual/index11.js +2 -2
  550. package/lib/esm/_virtual/index14.js +2 -2
  551. package/lib/esm/_virtual/index15.js +4 -0
  552. package/lib/esm/_virtual/index15.js.map +1 -0
  553. package/lib/esm/_virtual/index16.js +4 -0
  554. package/lib/esm/_virtual/index16.js.map +1 -0
  555. package/lib/esm/_virtual/index2.js +1 -1
  556. package/lib/esm/_virtual/index3.js +1 -1
  557. package/lib/esm/_virtual/index4.js +1 -1
  558. package/lib/esm/_virtual/index5.js +2 -6
  559. package/lib/esm/_virtual/index5.js.map +1 -1
  560. package/lib/esm/_virtual/index6.js +6 -2
  561. package/lib/esm/_virtual/index6.js.map +1 -1
  562. package/lib/esm/_virtual/index8.js +2 -4
  563. package/lib/esm/_virtual/index8.js.map +1 -1
  564. package/lib/esm/_virtual/index9.js +2 -2
  565. package/lib/esm/_virtual/mock-interceptor2.js +4 -0
  566. package/lib/esm/_virtual/mock-interceptor2.js.map +1 -0
  567. package/lib/esm/_virtual/utils4.js +4 -0
  568. package/lib/esm/_virtual/utils4.js.map +1 -0
  569. package/lib/esm/env/load.js +1 -1
  570. package/lib/esm/env/load.js.map +1 -1
  571. package/lib/types/env/load.d.ts +5 -5
  572. package/lib/types/utils/log-response.d.ts +5 -5
  573. package/lib/types/utils/logger.d.ts +5 -5
  574. package/package.json +9 -9
  575. package/lib/cjs/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
  576. package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
  577. package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
  578. package/lib/cjs/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
  579. package/lib/cjs/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
  580. package/lib/cjs/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
  581. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
  582. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
  583. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
  584. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
  585. package/lib/cjs/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
  586. package/lib/cjs/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
  587. package/lib/cjs/__/@actions/github/__/before-after-hook/index.js.map +0 -1
  588. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
  589. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
  590. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
  591. package/lib/cjs/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
  592. package/lib/cjs/__/env-ci/__/execa/index.js.map +0 -1
  593. package/lib/cjs/__/env-ci/__/execa/lib/command.js.map +0 -1
  594. package/lib/cjs/__/env-ci/__/execa/lib/error.js.map +0 -1
  595. package/lib/cjs/__/env-ci/__/execa/lib/promise.js.map +0 -1
  596. package/lib/cjs/__/env-ci/__/execa/lib/stdio.js.map +0 -1
  597. package/lib/cjs/__/env-ci/__/execa/lib/stream.js.map +0 -1
  598. package/lib/cjs/__/env-ci/__/execa/lib/verbose.js.map +0 -1
  599. package/lib/cjs/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
  600. package/lib/cjs/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
  601. package/lib/cjs/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
  602. package/lib/cjs/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
  603. package/lib/cjs/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
  604. package/lib/cjs/__/env-ci/__/is-stream/index.js.map +0 -1
  605. package/lib/cjs/__/env-ci/__/npm-run-path/index.js.map +0 -1
  606. package/lib/cjs/__/env-ci/__/path-key/index.js.map +0 -1
  607. package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
  608. package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
  609. package/lib/cjs/__/env-ci/__/strip-final-newline/index.js.map +0 -1
  610. package/lib/esm/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
  611. package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
  612. package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
  613. package/lib/esm/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
  614. package/lib/esm/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
  615. package/lib/esm/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
  616. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
  617. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
  618. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
  619. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
  620. package/lib/esm/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
  621. package/lib/esm/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
  622. package/lib/esm/__/@actions/github/__/before-after-hook/index.js.map +0 -1
  623. package/lib/esm/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
  624. package/lib/esm/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
  625. package/lib/esm/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
  626. package/lib/esm/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
  627. package/lib/esm/__/env-ci/__/execa/index.js.map +0 -1
  628. package/lib/esm/__/env-ci/__/execa/lib/command.js.map +0 -1
  629. package/lib/esm/__/env-ci/__/execa/lib/error.js.map +0 -1
  630. package/lib/esm/__/env-ci/__/execa/lib/promise.js.map +0 -1
  631. package/lib/esm/__/env-ci/__/execa/lib/stdio.js.map +0 -1
  632. package/lib/esm/__/env-ci/__/execa/lib/stream.js.map +0 -1
  633. package/lib/esm/__/env-ci/__/execa/lib/verbose.js.map +0 -1
  634. package/lib/esm/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
  635. package/lib/esm/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
  636. package/lib/esm/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
  637. package/lib/esm/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
  638. package/lib/esm/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
  639. package/lib/esm/__/env-ci/__/is-stream/index.js.map +0 -1
  640. package/lib/esm/__/env-ci/__/npm-run-path/index.js.map +0 -1
  641. package/lib/esm/__/env-ci/__/path-key/index.js.map +0 -1
  642. package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
  643. package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
  644. package/lib/esm/__/env-ci/__/strip-final-newline/index.js.map +0 -1
  645. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
  646. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
  647. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
  648. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
  649. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
  650. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
  651. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
  652. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
  653. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
  654. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
  655. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
  656. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
  657. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
  658. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
  659. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
  660. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
  661. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
  662. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
  663. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
  664. /package/lib/cjs/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
  665. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
  666. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
  667. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
  668. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
  669. /package/lib/cjs/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
  670. /package/lib/cjs/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
  671. /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
  672. /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
  673. /package/lib/cjs/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
  674. /package/lib/cjs/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
  675. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
  676. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
  677. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
  678. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
  679. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
  680. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
  681. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
  682. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
  683. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
  684. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
  685. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
  686. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
  687. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
  688. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
  689. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
  690. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
  691. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
  692. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
  693. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
  694. /package/lib/esm/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
  695. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
  696. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
  697. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
  698. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
  699. /package/lib/esm/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
  700. /package/lib/esm/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
  701. /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
  702. /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
  703. /package/lib/esm/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
  704. /package/lib/esm/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
@@ -0,0 +1,258 @@
1
+ import { commonjsGlobal } from '../../../../../../../_virtual/_commonjsHelpers.js';
2
+ import require$$0 from 'node:net';
3
+ import require$$0$1 from 'node:assert';
4
+ import { __require as requireUtil } from './util.js';
5
+ import { __require as requireErrors } from './errors.js';
6
+ import { __require as requireTimers } from '../util/timers.js';
7
+ import require$$1 from 'node:tls';
8
+
9
+ var connect;
10
+ var hasRequiredConnect;
11
+
12
+ function requireConnect () {
13
+ if (hasRequiredConnect) return connect;
14
+ hasRequiredConnect = 1;
15
+
16
+ const net = require$$0;
17
+ const assert = require$$0$1;
18
+ const util = requireUtil();
19
+ const { InvalidArgumentError, ConnectTimeoutError } = requireErrors();
20
+ const timers = requireTimers();
21
+
22
+ function noop () {}
23
+
24
+ let tls; // include tls conditionally since it is not always available
25
+
26
+ // TODO: session re-use does not wait for the first
27
+ // connection to resolve the session and might therefore
28
+ // resolve the same servername multiple times even when
29
+ // re-use is enabled.
30
+
31
+ let SessionCache;
32
+ // FIXME: remove workaround when the Node bug is fixed
33
+ // https://github.com/nodejs/node/issues/49344#issuecomment-1741776308
34
+ if (commonjsGlobal.FinalizationRegistry && !(process.env.NODE_V8_COVERAGE || process.env.UNDICI_NO_FG)) {
35
+ SessionCache = class WeakSessionCache {
36
+ constructor (maxCachedSessions) {
37
+ this._maxCachedSessions = maxCachedSessions;
38
+ this._sessionCache = new Map();
39
+ this._sessionRegistry = new commonjsGlobal.FinalizationRegistry((key) => {
40
+ if (this._sessionCache.size < this._maxCachedSessions) {
41
+ return
42
+ }
43
+
44
+ const ref = this._sessionCache.get(key);
45
+ if (ref !== undefined && ref.deref() === undefined) {
46
+ this._sessionCache.delete(key);
47
+ }
48
+ });
49
+ }
50
+
51
+ get (sessionKey) {
52
+ const ref = this._sessionCache.get(sessionKey);
53
+ return ref ? ref.deref() : null
54
+ }
55
+
56
+ set (sessionKey, session) {
57
+ if (this._maxCachedSessions === 0) {
58
+ return
59
+ }
60
+
61
+ this._sessionCache.set(sessionKey, new WeakRef(session));
62
+ this._sessionRegistry.register(session, sessionKey);
63
+ }
64
+ };
65
+ } else {
66
+ SessionCache = class SimpleSessionCache {
67
+ constructor (maxCachedSessions) {
68
+ this._maxCachedSessions = maxCachedSessions;
69
+ this._sessionCache = new Map();
70
+ }
71
+
72
+ get (sessionKey) {
73
+ return this._sessionCache.get(sessionKey)
74
+ }
75
+
76
+ set (sessionKey, session) {
77
+ if (this._maxCachedSessions === 0) {
78
+ return
79
+ }
80
+
81
+ if (this._sessionCache.size >= this._maxCachedSessions) {
82
+ // remove the oldest session
83
+ const { value: oldestKey } = this._sessionCache.keys().next();
84
+ this._sessionCache.delete(oldestKey);
85
+ }
86
+
87
+ this._sessionCache.set(sessionKey, session);
88
+ }
89
+ };
90
+ }
91
+
92
+ function buildConnector ({ allowH2, maxCachedSessions, socketPath, timeout, session: customSession, ...opts }) {
93
+ if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {
94
+ throw new InvalidArgumentError('maxCachedSessions must be a positive integer or zero')
95
+ }
96
+
97
+ const options = { path: socketPath, ...opts };
98
+ const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions);
99
+ timeout = timeout == null ? 10e3 : timeout;
100
+ allowH2 = allowH2 != null ? allowH2 : false;
101
+ return function connect ({ hostname, host, protocol, port, servername, localAddress, httpSocket }, callback) {
102
+ let socket;
103
+ if (protocol === 'https:') {
104
+ if (!tls) {
105
+ tls = require$$1;
106
+ }
107
+ servername = servername || options.servername || util.getServerName(host) || null;
108
+
109
+ const sessionKey = servername || hostname;
110
+ assert(sessionKey);
111
+
112
+ const session = customSession || sessionCache.get(sessionKey) || null;
113
+
114
+ port = port || 443;
115
+
116
+ socket = tls.connect({
117
+ highWaterMark: 16384, // TLS in node can't have bigger HWM anyway...
118
+ ...options,
119
+ servername,
120
+ session,
121
+ localAddress,
122
+ // TODO(HTTP/2): Add support for h2c
123
+ ALPNProtocols: allowH2 ? ['http/1.1', 'h2'] : ['http/1.1'],
124
+ socket: httpSocket, // upgrade socket connection
125
+ port,
126
+ host: hostname
127
+ });
128
+
129
+ socket
130
+ .on('session', function (session) {
131
+ // TODO (fix): Can a session become invalid once established? Don't think so?
132
+ sessionCache.set(sessionKey, session);
133
+ });
134
+ } else {
135
+ assert(!httpSocket, 'httpSocket can only be sent on TLS update');
136
+
137
+ port = port || 80;
138
+
139
+ socket = net.connect({
140
+ highWaterMark: 64 * 1024, // Same as nodejs fs streams.
141
+ ...options,
142
+ localAddress,
143
+ port,
144
+ host: hostname
145
+ });
146
+ }
147
+
148
+ // Set TCP keep alive options on the socket here instead of in connect() for the case of assigning the socket
149
+ if (options.keepAlive == null || options.keepAlive) {
150
+ const keepAliveInitialDelay = options.keepAliveInitialDelay === undefined ? 60e3 : options.keepAliveInitialDelay;
151
+ socket.setKeepAlive(true, keepAliveInitialDelay);
152
+ }
153
+
154
+ const clearConnectTimeout = setupConnectTimeout(new WeakRef(socket), { timeout, hostname, port });
155
+
156
+ socket
157
+ .setNoDelay(true)
158
+ .once(protocol === 'https:' ? 'secureConnect' : 'connect', function () {
159
+ queueMicrotask(clearConnectTimeout);
160
+
161
+ if (callback) {
162
+ const cb = callback;
163
+ callback = null;
164
+ cb(null, this);
165
+ }
166
+ })
167
+ .on('error', function (err) {
168
+ queueMicrotask(clearConnectTimeout);
169
+
170
+ if (callback) {
171
+ const cb = callback;
172
+ callback = null;
173
+ cb(err);
174
+ }
175
+ });
176
+
177
+ return socket
178
+ }
179
+ }
180
+
181
+ /**
182
+ * @param {WeakRef<net.Socket>} socketWeakRef
183
+ * @param {object} opts
184
+ * @param {number} opts.timeout
185
+ * @param {string} opts.hostname
186
+ * @param {number} opts.port
187
+ * @returns {() => void}
188
+ */
189
+ const setupConnectTimeout = process.platform === 'win32'
190
+ ? (socketWeakRef, opts) => {
191
+ if (!opts.timeout) {
192
+ return noop
193
+ }
194
+
195
+ let s1 = null;
196
+ let s2 = null;
197
+ const fastTimer = timers.setFastTimeout(() => {
198
+ // setImmediate is added to make sure that we prioritize socket error events over timeouts
199
+ s1 = setImmediate(() => {
200
+ // Windows needs an extra setImmediate probably due to implementation differences in the socket logic
201
+ s2 = setImmediate(() => onConnectTimeout(socketWeakRef.deref(), opts));
202
+ });
203
+ }, opts.timeout);
204
+ return () => {
205
+ timers.clearFastTimeout(fastTimer);
206
+ clearImmediate(s1);
207
+ clearImmediate(s2);
208
+ }
209
+ }
210
+ : (socketWeakRef, opts) => {
211
+ if (!opts.timeout) {
212
+ return noop
213
+ }
214
+
215
+ let s1 = null;
216
+ const fastTimer = timers.setFastTimeout(() => {
217
+ // setImmediate is added to make sure that we prioritize socket error events over timeouts
218
+ s1 = setImmediate(() => {
219
+ onConnectTimeout(socketWeakRef.deref(), opts);
220
+ });
221
+ }, opts.timeout);
222
+ return () => {
223
+ timers.clearFastTimeout(fastTimer);
224
+ clearImmediate(s1);
225
+ }
226
+ };
227
+
228
+ /**
229
+ * @param {net.Socket} socket
230
+ * @param {object} opts
231
+ * @param {number} opts.timeout
232
+ * @param {string} opts.hostname
233
+ * @param {number} opts.port
234
+ */
235
+ function onConnectTimeout (socket, opts) {
236
+ // The socket could be already garbage collected
237
+ if (socket == null) {
238
+ return
239
+ }
240
+
241
+ let message = 'Connect Timeout Error';
242
+ if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) {
243
+ message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(', ')},`;
244
+ } else {
245
+ message += ` (attempted address: ${opts.hostname}:${opts.port},`;
246
+ }
247
+
248
+ message += ` timeout: ${opts.timeout}ms)`;
249
+
250
+ util.destroy(socket, new ConnectTimeoutError(message));
251
+ }
252
+
253
+ connect = buildConnector;
254
+ return connect;
255
+ }
256
+
257
+ export { requireConnect as __require };
258
+ //# sourceMappingURL=connect.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connect.js","sources":["../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/core/connect.js"],"sourcesContent":["'use strict'\n\nconst net = require('node:net')\nconst assert = require('node:assert')\nconst util = require('./util')\nconst { InvalidArgumentError, ConnectTimeoutError } = require('./errors')\nconst timers = require('../util/timers')\n\nfunction noop () {}\n\nlet tls // include tls conditionally since it is not always available\n\n// TODO: session re-use does not wait for the first\n// connection to resolve the session and might therefore\n// resolve the same servername multiple times even when\n// re-use is enabled.\n\nlet SessionCache\n// FIXME: remove workaround when the Node bug is fixed\n// https://github.com/nodejs/node/issues/49344#issuecomment-1741776308\nif (global.FinalizationRegistry && !(process.env.NODE_V8_COVERAGE || process.env.UNDICI_NO_FG)) {\n SessionCache = class WeakSessionCache {\n constructor (maxCachedSessions) {\n this._maxCachedSessions = maxCachedSessions\n this._sessionCache = new Map()\n this._sessionRegistry = new global.FinalizationRegistry((key) => {\n if (this._sessionCache.size < this._maxCachedSessions) {\n return\n }\n\n const ref = this._sessionCache.get(key)\n if (ref !== undefined && ref.deref() === undefined) {\n this._sessionCache.delete(key)\n }\n })\n }\n\n get (sessionKey) {\n const ref = this._sessionCache.get(sessionKey)\n return ref ? ref.deref() : null\n }\n\n set (sessionKey, session) {\n if (this._maxCachedSessions === 0) {\n return\n }\n\n this._sessionCache.set(sessionKey, new WeakRef(session))\n this._sessionRegistry.register(session, sessionKey)\n }\n }\n} else {\n SessionCache = class SimpleSessionCache {\n constructor (maxCachedSessions) {\n this._maxCachedSessions = maxCachedSessions\n this._sessionCache = new Map()\n }\n\n get (sessionKey) {\n return this._sessionCache.get(sessionKey)\n }\n\n set (sessionKey, session) {\n if (this._maxCachedSessions === 0) {\n return\n }\n\n if (this._sessionCache.size >= this._maxCachedSessions) {\n // remove the oldest session\n const { value: oldestKey } = this._sessionCache.keys().next()\n this._sessionCache.delete(oldestKey)\n }\n\n this._sessionCache.set(sessionKey, session)\n }\n }\n}\n\nfunction buildConnector ({ allowH2, maxCachedSessions, socketPath, timeout, session: customSession, ...opts }) {\n if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {\n throw new InvalidArgumentError('maxCachedSessions must be a positive integer or zero')\n }\n\n const options = { path: socketPath, ...opts }\n const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions)\n timeout = timeout == null ? 10e3 : timeout\n allowH2 = allowH2 != null ? allowH2 : false\n return function connect ({ hostname, host, protocol, port, servername, localAddress, httpSocket }, callback) {\n let socket\n if (protocol === 'https:') {\n if (!tls) {\n tls = require('node:tls')\n }\n servername = servername || options.servername || util.getServerName(host) || null\n\n const sessionKey = servername || hostname\n assert(sessionKey)\n\n const session = customSession || sessionCache.get(sessionKey) || null\n\n port = port || 443\n\n socket = tls.connect({\n highWaterMark: 16384, // TLS in node can't have bigger HWM anyway...\n ...options,\n servername,\n session,\n localAddress,\n // TODO(HTTP/2): Add support for h2c\n ALPNProtocols: allowH2 ? ['http/1.1', 'h2'] : ['http/1.1'],\n socket: httpSocket, // upgrade socket connection\n port,\n host: hostname\n })\n\n socket\n .on('session', function (session) {\n // TODO (fix): Can a session become invalid once established? Don't think so?\n sessionCache.set(sessionKey, session)\n })\n } else {\n assert(!httpSocket, 'httpSocket can only be sent on TLS update')\n\n port = port || 80\n\n socket = net.connect({\n highWaterMark: 64 * 1024, // Same as nodejs fs streams.\n ...options,\n localAddress,\n port,\n host: hostname\n })\n }\n\n // Set TCP keep alive options on the socket here instead of in connect() for the case of assigning the socket\n if (options.keepAlive == null || options.keepAlive) {\n const keepAliveInitialDelay = options.keepAliveInitialDelay === undefined ? 60e3 : options.keepAliveInitialDelay\n socket.setKeepAlive(true, keepAliveInitialDelay)\n }\n\n const clearConnectTimeout = setupConnectTimeout(new WeakRef(socket), { timeout, hostname, port })\n\n socket\n .setNoDelay(true)\n .once(protocol === 'https:' ? 'secureConnect' : 'connect', function () {\n queueMicrotask(clearConnectTimeout)\n\n if (callback) {\n const cb = callback\n callback = null\n cb(null, this)\n }\n })\n .on('error', function (err) {\n queueMicrotask(clearConnectTimeout)\n\n if (callback) {\n const cb = callback\n callback = null\n cb(err)\n }\n })\n\n return socket\n }\n}\n\n/**\n * @param {WeakRef<net.Socket>} socketWeakRef\n * @param {object} opts\n * @param {number} opts.timeout\n * @param {string} opts.hostname\n * @param {number} opts.port\n * @returns {() => void}\n */\nconst setupConnectTimeout = process.platform === 'win32'\n ? (socketWeakRef, opts) => {\n if (!opts.timeout) {\n return noop\n }\n\n let s1 = null\n let s2 = null\n const fastTimer = timers.setFastTimeout(() => {\n // setImmediate is added to make sure that we prioritize socket error events over timeouts\n s1 = setImmediate(() => {\n // Windows needs an extra setImmediate probably due to implementation differences in the socket logic\n s2 = setImmediate(() => onConnectTimeout(socketWeakRef.deref(), opts))\n })\n }, opts.timeout)\n return () => {\n timers.clearFastTimeout(fastTimer)\n clearImmediate(s1)\n clearImmediate(s2)\n }\n }\n : (socketWeakRef, opts) => {\n if (!opts.timeout) {\n return noop\n }\n\n let s1 = null\n const fastTimer = timers.setFastTimeout(() => {\n // setImmediate is added to make sure that we prioritize socket error events over timeouts\n s1 = setImmediate(() => {\n onConnectTimeout(socketWeakRef.deref(), opts)\n })\n }, opts.timeout)\n return () => {\n timers.clearFastTimeout(fastTimer)\n clearImmediate(s1)\n }\n }\n\n/**\n * @param {net.Socket} socket\n * @param {object} opts\n * @param {number} opts.timeout\n * @param {string} opts.hostname\n * @param {number} opts.port\n */\nfunction onConnectTimeout (socket, opts) {\n // The socket could be already garbage collected\n if (socket == null) {\n return\n }\n\n let message = 'Connect Timeout Error'\n if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) {\n message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(', ')},`\n } else {\n message += ` (attempted address: ${opts.hostname}:${opts.port},`\n }\n\n message += ` timeout: ${opts.timeout}ms)`\n\n util.destroy(socket, new ConnectTimeoutError(message))\n}\n\nmodule.exports = buildConnector\n"],"names":["require$$1","require$$2","require$$3","require$$4","global","require$$5"],"mappings":";;;;;;;;;;;;;;;AAEA,CAAA,MAAM,GAAG,GAAG;AACZ,CAAA,MAAM,MAAM,GAAGA;AACf,CAAA,MAAM,IAAI,GAAGC,WAAA;AACb,CAAA,MAAM,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,GAAGC,aAAA;AACtD,CAAA,MAAM,MAAM,GAAGC,aAAA;;AAEf,CAAA,SAAS,IAAI,IAAI,CAAA;;AAEjB,CAAA,IAAI,IAAG;;AAEP;AACA;AACA;AACA;;CAEA,IAAI;AACJ;AACA;AACA,CAAA,IAAIC,cAAM,CAAC,oBAAoB,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,gBAAgB,IAAI,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,EAAE;AAChG,GAAE,YAAY,GAAG,MAAM,gBAAgB,CAAC;AACxC,KAAI,WAAW,CAAC,CAAC,iBAAiB,EAAE;OAC9B,IAAI,CAAC,kBAAkB,GAAG;AAChC,OAAM,IAAI,CAAC,aAAa,GAAG,IAAI,GAAG;OAC5B,IAAI,CAAC,gBAAgB,GAAG,IAAIA,cAAM,CAAC,oBAAoB,CAAC,CAAC,GAAG,KAAK;SAC/D,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,GAAG,IAAI,CAAC,kBAAkB,EAAE;WACrD;AACV,SAAA;;SAEQ,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,GAAG;SACtC,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,CAAC,KAAK,EAAE,KAAK,SAAS,EAAE;AAC5D,WAAU,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG;AACvC,SAAA;OACA,CAAO;AACP,KAAA;;AAEA,KAAI,GAAG,CAAC,CAAC,UAAU,EAAE;OACf,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU;AACnD,OAAM,OAAO,GAAG,GAAG,GAAG,CAAC,KAAK,EAAE,GAAG;AACjC,KAAA;;AAEA,KAAI,GAAG,CAAC,CAAC,UAAU,EAAE,OAAO,EAAE;AAC9B,OAAM,IAAI,IAAI,CAAC,kBAAkB,KAAK,CAAC,EAAE;SACjC;AACR,OAAA;;AAEA,OAAM,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,EAAE,IAAI,OAAO,CAAC,OAAO,CAAC;OACvD,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,OAAO,EAAE,UAAU;AACxD,KAAA;AACA;AACA,CAAA,CAAC,MAAM;AACP,GAAE,YAAY,GAAG,MAAM,kBAAkB,CAAC;AAC1C,KAAI,WAAW,CAAC,CAAC,iBAAiB,EAAE;OAC9B,IAAI,CAAC,kBAAkB,GAAG;AAChC,OAAM,IAAI,CAAC,aAAa,GAAG,IAAI,GAAG;AAClC,KAAA;;AAEA,KAAI,GAAG,CAAC,CAAC,UAAU,EAAE;AACrB,OAAM,OAAO,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU;AAC9C,KAAA;;AAEA,KAAI,GAAG,CAAC,CAAC,UAAU,EAAE,OAAO,EAAE;AAC9B,OAAM,IAAI,IAAI,CAAC,kBAAkB,KAAK,CAAC,EAAE;SACjC;AACR,OAAA;;OAEM,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,EAAE;AAC9D;AACA,SAAQ,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,IAAI;AACnE,SAAQ,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,SAAS;AAC3C,OAAA;;OAEM,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,EAAE,OAAO;AAChD,KAAA;AACA;AACA,CAAA;;AAEA,CAAA,SAAS,cAAc,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,GAAG,IAAI,EAAE,EAAE;AAC/G,GAAE,IAAI,iBAAiB,IAAI,IAAI,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,iBAAiB,CAAC,IAAI,iBAAiB,GAAG,CAAC,CAAC,EAAE;AACpG,KAAI,MAAM,IAAI,oBAAoB,CAAC,sDAAsD;AACzF,GAAA;;GAEE,MAAM,OAAO,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,IAAI;AAC7C,GAAE,MAAM,YAAY,GAAG,IAAI,YAAY,CAAC,iBAAiB,IAAI,IAAI,GAAG,GAAG,GAAG,iBAAiB;AAC3F,GAAE,OAAO,GAAG,OAAO,IAAI,IAAI,GAAG,IAAI,GAAG;AACrC,GAAE,OAAO,GAAG,OAAO,IAAI,IAAI,GAAG,OAAO,GAAG;GACtC,OAAO,SAAS,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,UAAU,EAAE,YAAY,EAAE,UAAU,EAAE,EAAE,QAAQ,EAAE;AAC/G,KAAI,IAAI;AACR,KAAI,IAAI,QAAQ,KAAK,QAAQ,EAAE;OACzB,IAAI,CAAC,GAAG,EAAE;AAChB,SAAQ,GAAG,GAAGC;AACd,OAAA;AACA,OAAM,UAAU,GAAG,UAAU,IAAI,OAAO,CAAC,UAAU,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI;;AAEnF,OAAM,MAAM,UAAU,GAAG,UAAU,IAAI;OACjC,MAAM,CAAC,UAAU;;OAEjB,MAAM,OAAO,GAAG,aAAa,IAAI,YAAY,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI;;OAEjE,IAAI,GAAG,IAAI,IAAI;;AAErB,OAAM,MAAM,GAAG,GAAG,CAAC,OAAO,CAAC;SACnB,aAAa,EAAE,KAAK;AAC5B,SAAQ,GAAG,OAAO;AAClB,SAAQ,UAAU;AAClB,SAAQ,OAAO;AACf,SAAQ,YAAY;AACpB;AACA,SAAQ,aAAa,EAAE,OAAO,GAAG,CAAC,UAAU,EAAE,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC;SAC1D,MAAM,EAAE,UAAU;AAC1B,SAAQ,IAAI;AACZ,SAAQ,IAAI,EAAE;QACP;;OAED;AACN,UAAS,EAAE,CAAC,SAAS,EAAE,UAAU,OAAO,EAAE;AAC1C;AACA,WAAU,YAAY,CAAC,GAAG,CAAC,UAAU,EAAE,OAAO;SAC9C,CAAS;AACT,KAAA,CAAK,MAAM;AACX,OAAM,MAAM,CAAC,CAAC,UAAU,EAAE,2CAA2C;;OAE/D,IAAI,GAAG,IAAI,IAAI;;AAErB,OAAM,MAAM,GAAG,GAAG,CAAC,OAAO,CAAC;AAC3B,SAAQ,aAAa,EAAE,EAAE,GAAG,IAAI;AAChC,SAAQ,GAAG,OAAO;AAClB,SAAQ,YAAY;AACpB,SAAQ,IAAI;AACZ,SAAQ,IAAI,EAAE;QACP;AACP,KAAA;;AAEA;KACI,IAAI,OAAO,CAAC,SAAS,IAAI,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE;AACxD,OAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,KAAK,SAAS,GAAG,IAAI,GAAG,OAAO,CAAC;AACjG,OAAM,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,qBAAqB;AACrD,KAAA;;AAEA,KAAI,MAAM,mBAAmB,GAAG,mBAAmB,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE;;KAEhG;QACG,UAAU,CAAC,IAAI;QACf,IAAI,CAAC,QAAQ,KAAK,QAAQ,GAAG,eAAe,GAAG,SAAS,EAAE,YAAY;SACrE,cAAc,CAAC,mBAAmB;;SAElC,IAAI,QAAQ,EAAE;WACZ,MAAM,EAAE,GAAG;AACrB,WAAU,QAAQ,GAAG;AACrB,WAAU,EAAE,CAAC,IAAI,EAAE,IAAI;AACvB,SAAA;OACA,CAAO;AACP,QAAO,EAAE,CAAC,OAAO,EAAE,UAAU,GAAG,EAAE;SAC1B,cAAc,CAAC,mBAAmB;;SAElC,IAAI,QAAQ,EAAE;WACZ,MAAM,EAAE,GAAG;AACrB,WAAU,QAAQ,GAAG;WACX,EAAE,CAAC,GAAG;AAChB,SAAA;OACA,CAAO;;AAEP,KAAI,OAAO;AACX,GAAA;AACA,CAAA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAA,MAAM,mBAAmB,GAAG,OAAO,CAAC,QAAQ,KAAK;AACjD,KAAI,CAAC,aAAa,EAAE,IAAI,KAAK;AAC7B,OAAM,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;AACzB,SAAQ,OAAO;AACf,OAAA;;OAEM,IAAI,EAAE,GAAG;OACT,IAAI,EAAE,GAAG;AACf,OAAM,MAAM,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM;AACpD;AACA,SAAQ,EAAE,GAAG,YAAY,CAAC,MAAM;AAChC;AACA,WAAU,EAAE,GAAG,YAAY,CAAC,MAAM,gBAAgB,CAAC,aAAa,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC;SAC/E,CAAS;OACT,CAAO,EAAE,IAAI,CAAC,OAAO;AACrB,OAAM,OAAO,MAAM;AACnB,SAAQ,MAAM,CAAC,gBAAgB,CAAC,SAAS;SACjC,cAAc,CAAC,EAAE;SACjB,cAAc,CAAC,EAAE;AACzB,OAAA;AACA,KAAA;AACA,KAAI,CAAC,aAAa,EAAE,IAAI,KAAK;AAC7B,OAAM,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;AACzB,SAAQ,OAAO;AACf,OAAA;;OAEM,IAAI,EAAE,GAAG;AACf,OAAM,MAAM,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM;AACpD;AACA,SAAQ,EAAE,GAAG,YAAY,CAAC,MAAM;AAChC,WAAU,gBAAgB,CAAC,aAAa,CAAC,KAAK,EAAE,EAAE,IAAI;SACtD,CAAS;OACT,CAAO,EAAE,IAAI,CAAC,OAAO;AACrB,OAAM,OAAO,MAAM;AACnB,SAAQ,MAAM,CAAC,gBAAgB,CAAC,SAAS;SACjC,cAAc,CAAC,EAAE;AACzB,OAAA;AACA,KAAA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAA,SAAS,gBAAgB,EAAE,MAAM,EAAE,IAAI,EAAE;AACzC;AACA,GAAE,IAAI,MAAM,IAAI,IAAI,EAAE;KAClB;AACJ,GAAA;;GAEE,IAAI,OAAO,GAAG;GACd,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,CAAC,EAAE;AAChE,KAAI,OAAO,IAAI,CAAC,uBAAuB,EAAE,MAAM,CAAC,kCAAkC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AAC/F,GAAA,CAAG,MAAM;AACT,KAAI,OAAO,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;AACnE,GAAA;;GAEE,OAAO,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG;;GAExC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,mBAAmB,CAAC,OAAO,CAAC;AACvD,CAAA;;AAEA,CAAA,OAAc,GAAG;;;;;;","x_google_ignoreList":[0]}
@@ -0,0 +1,128 @@
1
+ var constants;
2
+ var hasRequiredConstants;
3
+
4
+ function requireConstants () {
5
+ if (hasRequiredConstants) return constants;
6
+ hasRequiredConstants = 1;
7
+
8
+ /** @type {Record<string, string | undefined>} */
9
+ const headerNameLowerCasedRecord = {};
10
+
11
+ // https://developer.mozilla.org/docs/Web/HTTP/Headers
12
+ const wellknownHeaderNames = [
13
+ 'Accept',
14
+ 'Accept-Encoding',
15
+ 'Accept-Language',
16
+ 'Accept-Ranges',
17
+ 'Access-Control-Allow-Credentials',
18
+ 'Access-Control-Allow-Headers',
19
+ 'Access-Control-Allow-Methods',
20
+ 'Access-Control-Allow-Origin',
21
+ 'Access-Control-Expose-Headers',
22
+ 'Access-Control-Max-Age',
23
+ 'Access-Control-Request-Headers',
24
+ 'Access-Control-Request-Method',
25
+ 'Age',
26
+ 'Allow',
27
+ 'Alt-Svc',
28
+ 'Alt-Used',
29
+ 'Authorization',
30
+ 'Cache-Control',
31
+ 'Clear-Site-Data',
32
+ 'Connection',
33
+ 'Content-Disposition',
34
+ 'Content-Encoding',
35
+ 'Content-Language',
36
+ 'Content-Length',
37
+ 'Content-Location',
38
+ 'Content-Range',
39
+ 'Content-Security-Policy',
40
+ 'Content-Security-Policy-Report-Only',
41
+ 'Content-Type',
42
+ 'Cookie',
43
+ 'Cross-Origin-Embedder-Policy',
44
+ 'Cross-Origin-Opener-Policy',
45
+ 'Cross-Origin-Resource-Policy',
46
+ 'Date',
47
+ 'Device-Memory',
48
+ 'Downlink',
49
+ 'ECT',
50
+ 'ETag',
51
+ 'Expect',
52
+ 'Expect-CT',
53
+ 'Expires',
54
+ 'Forwarded',
55
+ 'From',
56
+ 'Host',
57
+ 'If-Match',
58
+ 'If-Modified-Since',
59
+ 'If-None-Match',
60
+ 'If-Range',
61
+ 'If-Unmodified-Since',
62
+ 'Keep-Alive',
63
+ 'Last-Modified',
64
+ 'Link',
65
+ 'Location',
66
+ 'Max-Forwards',
67
+ 'Origin',
68
+ 'Permissions-Policy',
69
+ 'Pragma',
70
+ 'Proxy-Authenticate',
71
+ 'Proxy-Authorization',
72
+ 'RTT',
73
+ 'Range',
74
+ 'Referer',
75
+ 'Referrer-Policy',
76
+ 'Refresh',
77
+ 'Retry-After',
78
+ 'Sec-WebSocket-Accept',
79
+ 'Sec-WebSocket-Extensions',
80
+ 'Sec-WebSocket-Key',
81
+ 'Sec-WebSocket-Protocol',
82
+ 'Sec-WebSocket-Version',
83
+ 'Server',
84
+ 'Server-Timing',
85
+ 'Service-Worker-Allowed',
86
+ 'Service-Worker-Navigation-Preload',
87
+ 'Set-Cookie',
88
+ 'SourceMap',
89
+ 'Strict-Transport-Security',
90
+ 'Supports-Loading-Mode',
91
+ 'TE',
92
+ 'Timing-Allow-Origin',
93
+ 'Trailer',
94
+ 'Transfer-Encoding',
95
+ 'Upgrade',
96
+ 'Upgrade-Insecure-Requests',
97
+ 'User-Agent',
98
+ 'Vary',
99
+ 'Via',
100
+ 'WWW-Authenticate',
101
+ 'X-Content-Type-Options',
102
+ 'X-DNS-Prefetch-Control',
103
+ 'X-Frame-Options',
104
+ 'X-Permitted-Cross-Domain-Policies',
105
+ 'X-Powered-By',
106
+ 'X-Requested-With',
107
+ 'X-XSS-Protection'
108
+ ];
109
+
110
+ for (let i = 0; i < wellknownHeaderNames.length; ++i) {
111
+ const key = wellknownHeaderNames[i];
112
+ const lowerCasedKey = key.toLowerCase();
113
+ headerNameLowerCasedRecord[key] = headerNameLowerCasedRecord[lowerCasedKey] =
114
+ lowerCasedKey;
115
+ }
116
+
117
+ // Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`.
118
+ Object.setPrototypeOf(headerNameLowerCasedRecord, null);
119
+
120
+ constants = {
121
+ wellknownHeaderNames,
122
+ headerNameLowerCasedRecord
123
+ };
124
+ return constants;
125
+ }
126
+
127
+ export { requireConstants as __require };
128
+ //# sourceMappingURL=constants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.js","sources":["../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/core/constants.js"],"sourcesContent":["'use strict'\n\n/** @type {Record<string, string | undefined>} */\nconst headerNameLowerCasedRecord = {}\n\n// https://developer.mozilla.org/docs/Web/HTTP/Headers\nconst wellknownHeaderNames = [\n 'Accept',\n 'Accept-Encoding',\n 'Accept-Language',\n 'Accept-Ranges',\n 'Access-Control-Allow-Credentials',\n 'Access-Control-Allow-Headers',\n 'Access-Control-Allow-Methods',\n 'Access-Control-Allow-Origin',\n 'Access-Control-Expose-Headers',\n 'Access-Control-Max-Age',\n 'Access-Control-Request-Headers',\n 'Access-Control-Request-Method',\n 'Age',\n 'Allow',\n 'Alt-Svc',\n 'Alt-Used',\n 'Authorization',\n 'Cache-Control',\n 'Clear-Site-Data',\n 'Connection',\n 'Content-Disposition',\n 'Content-Encoding',\n 'Content-Language',\n 'Content-Length',\n 'Content-Location',\n 'Content-Range',\n 'Content-Security-Policy',\n 'Content-Security-Policy-Report-Only',\n 'Content-Type',\n 'Cookie',\n 'Cross-Origin-Embedder-Policy',\n 'Cross-Origin-Opener-Policy',\n 'Cross-Origin-Resource-Policy',\n 'Date',\n 'Device-Memory',\n 'Downlink',\n 'ECT',\n 'ETag',\n 'Expect',\n 'Expect-CT',\n 'Expires',\n 'Forwarded',\n 'From',\n 'Host',\n 'If-Match',\n 'If-Modified-Since',\n 'If-None-Match',\n 'If-Range',\n 'If-Unmodified-Since',\n 'Keep-Alive',\n 'Last-Modified',\n 'Link',\n 'Location',\n 'Max-Forwards',\n 'Origin',\n 'Permissions-Policy',\n 'Pragma',\n 'Proxy-Authenticate',\n 'Proxy-Authorization',\n 'RTT',\n 'Range',\n 'Referer',\n 'Referrer-Policy',\n 'Refresh',\n 'Retry-After',\n 'Sec-WebSocket-Accept',\n 'Sec-WebSocket-Extensions',\n 'Sec-WebSocket-Key',\n 'Sec-WebSocket-Protocol',\n 'Sec-WebSocket-Version',\n 'Server',\n 'Server-Timing',\n 'Service-Worker-Allowed',\n 'Service-Worker-Navigation-Preload',\n 'Set-Cookie',\n 'SourceMap',\n 'Strict-Transport-Security',\n 'Supports-Loading-Mode',\n 'TE',\n 'Timing-Allow-Origin',\n 'Trailer',\n 'Transfer-Encoding',\n 'Upgrade',\n 'Upgrade-Insecure-Requests',\n 'User-Agent',\n 'Vary',\n 'Via',\n 'WWW-Authenticate',\n 'X-Content-Type-Options',\n 'X-DNS-Prefetch-Control',\n 'X-Frame-Options',\n 'X-Permitted-Cross-Domain-Policies',\n 'X-Powered-By',\n 'X-Requested-With',\n 'X-XSS-Protection'\n]\n\nfor (let i = 0; i < wellknownHeaderNames.length; ++i) {\n const key = wellknownHeaderNames[i]\n const lowerCasedKey = key.toLowerCase()\n headerNameLowerCasedRecord[key] = headerNameLowerCasedRecord[lowerCasedKey] =\n lowerCasedKey\n}\n\n// Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`.\nObject.setPrototypeOf(headerNameLowerCasedRecord, null)\n\nmodule.exports = {\n wellknownHeaderNames,\n headerNameLowerCasedRecord\n}\n"],"names":[],"mappings":";;;;;;;AAEA;AACA,CAAA,MAAM,0BAA0B,GAAG;;AAEnC;AACA,CAAA,MAAM,oBAAoB,GAAG;AAC7B,GAAE,QAAQ;AACV,GAAE,iBAAiB;AACnB,GAAE,iBAAiB;AACnB,GAAE,eAAe;AACjB,GAAE,kCAAkC;AACpC,GAAE,8BAA8B;AAChC,GAAE,8BAA8B;AAChC,GAAE,6BAA6B;AAC/B,GAAE,+BAA+B;AACjC,GAAE,wBAAwB;AAC1B,GAAE,gCAAgC;AAClC,GAAE,+BAA+B;AACjC,GAAE,KAAK;AACP,GAAE,OAAO;AACT,GAAE,SAAS;AACX,GAAE,UAAU;AACZ,GAAE,eAAe;AACjB,GAAE,eAAe;AACjB,GAAE,iBAAiB;AACnB,GAAE,YAAY;AACd,GAAE,qBAAqB;AACvB,GAAE,kBAAkB;AACpB,GAAE,kBAAkB;AACpB,GAAE,gBAAgB;AAClB,GAAE,kBAAkB;AACpB,GAAE,eAAe;AACjB,GAAE,yBAAyB;AAC3B,GAAE,qCAAqC;AACvC,GAAE,cAAc;AAChB,GAAE,QAAQ;AACV,GAAE,8BAA8B;AAChC,GAAE,4BAA4B;AAC9B,GAAE,8BAA8B;AAChC,GAAE,MAAM;AACR,GAAE,eAAe;AACjB,GAAE,UAAU;AACZ,GAAE,KAAK;AACP,GAAE,MAAM;AACR,GAAE,QAAQ;AACV,GAAE,WAAW;AACb,GAAE,SAAS;AACX,GAAE,WAAW;AACb,GAAE,MAAM;AACR,GAAE,MAAM;AACR,GAAE,UAAU;AACZ,GAAE,mBAAmB;AACrB,GAAE,eAAe;AACjB,GAAE,UAAU;AACZ,GAAE,qBAAqB;AACvB,GAAE,YAAY;AACd,GAAE,eAAe;AACjB,GAAE,MAAM;AACR,GAAE,UAAU;AACZ,GAAE,cAAc;AAChB,GAAE,QAAQ;AACV,GAAE,oBAAoB;AACtB,GAAE,QAAQ;AACV,GAAE,oBAAoB;AACtB,GAAE,qBAAqB;AACvB,GAAE,KAAK;AACP,GAAE,OAAO;AACT,GAAE,SAAS;AACX,GAAE,iBAAiB;AACnB,GAAE,SAAS;AACX,GAAE,aAAa;AACf,GAAE,sBAAsB;AACxB,GAAE,0BAA0B;AAC5B,GAAE,mBAAmB;AACrB,GAAE,wBAAwB;AAC1B,GAAE,uBAAuB;AACzB,GAAE,QAAQ;AACV,GAAE,eAAe;AACjB,GAAE,wBAAwB;AAC1B,GAAE,mCAAmC;AACrC,GAAE,YAAY;AACd,GAAE,WAAW;AACb,GAAE,2BAA2B;AAC7B,GAAE,uBAAuB;AACzB,GAAE,IAAI;AACN,GAAE,qBAAqB;AACvB,GAAE,SAAS;AACX,GAAE,mBAAmB;AACrB,GAAE,SAAS;AACX,GAAE,2BAA2B;AAC7B,GAAE,YAAY;AACd,GAAE,MAAM;AACR,GAAE,KAAK;AACP,GAAE,kBAAkB;AACpB,GAAE,wBAAwB;AAC1B,GAAE,wBAAwB;AAC1B,GAAE,iBAAiB;AACnB,GAAE,mCAAmC;AACrC,GAAE,cAAc;AAChB,GAAE,kBAAkB;GAClB;AACF;;AAEA,CAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,oBAAoB,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;AACtD,GAAE,MAAM,GAAG,GAAG,oBAAoB,CAAC,CAAC;AACpC,GAAE,MAAM,aAAa,GAAG,GAAG,CAAC,WAAW;GACrC,0BAA0B,CAAC,GAAG,CAAC,GAAG,0BAA0B,CAAC,aAAa,CAAC;KACzE;AACJ,CAAA;;AAEA;AACA,CAAA,MAAM,CAAC,cAAc,CAAC,0BAA0B,EAAE,IAAI;;AAEtD,CAAA,SAAc,GAAG;AACjB,GAAE,oBAAoB;GACpB;AACF;;;;;;","x_google_ignoreList":[0]}
@@ -0,0 +1,215 @@
1
+ import require$$0 from 'node:diagnostics_channel';
2
+ import require$$1 from 'node:util';
3
+
4
+ var diagnostics;
5
+ var hasRequiredDiagnostics;
6
+
7
+ function requireDiagnostics () {
8
+ if (hasRequiredDiagnostics) return diagnostics;
9
+ hasRequiredDiagnostics = 1;
10
+ const diagnosticsChannel = require$$0;
11
+ const util = require$$1;
12
+
13
+ const undiciDebugLog = util.debuglog('undici');
14
+ const fetchDebuglog = util.debuglog('fetch');
15
+ const websocketDebuglog = util.debuglog('websocket');
16
+ let isClientSet = false;
17
+ const channels = {
18
+ // Client
19
+ beforeConnect: diagnosticsChannel.channel('undici:client:beforeConnect'),
20
+ connected: diagnosticsChannel.channel('undici:client:connected'),
21
+ connectError: diagnosticsChannel.channel('undici:client:connectError'),
22
+ sendHeaders: diagnosticsChannel.channel('undici:client:sendHeaders'),
23
+ // Request
24
+ create: diagnosticsChannel.channel('undici:request:create'),
25
+ bodySent: diagnosticsChannel.channel('undici:request:bodySent'),
26
+ headers: diagnosticsChannel.channel('undici:request:headers'),
27
+ trailers: diagnosticsChannel.channel('undici:request:trailers'),
28
+ error: diagnosticsChannel.channel('undici:request:error'),
29
+ // WebSocket
30
+ open: diagnosticsChannel.channel('undici:websocket:open'),
31
+ close: diagnosticsChannel.channel('undici:websocket:close'),
32
+ socketError: diagnosticsChannel.channel('undici:websocket:socket_error'),
33
+ ping: diagnosticsChannel.channel('undici:websocket:ping'),
34
+ pong: diagnosticsChannel.channel('undici:websocket:pong')
35
+ };
36
+
37
+ if (undiciDebugLog.enabled || fetchDebuglog.enabled) {
38
+ const debuglog = fetchDebuglog.enabled ? fetchDebuglog : undiciDebugLog;
39
+
40
+ // Track all Client events
41
+ diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {
42
+ const {
43
+ connectParams: { version, protocol, port, host }
44
+ } = evt;
45
+ debuglog(
46
+ 'connecting to %s using %s%s',
47
+ `${host}${port ? `:${port}` : ''}`,
48
+ protocol,
49
+ version
50
+ );
51
+ });
52
+
53
+ diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {
54
+ const {
55
+ connectParams: { version, protocol, port, host }
56
+ } = evt;
57
+ debuglog(
58
+ 'connected to %s using %s%s',
59
+ `${host}${port ? `:${port}` : ''}`,
60
+ protocol,
61
+ version
62
+ );
63
+ });
64
+
65
+ diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {
66
+ const {
67
+ connectParams: { version, protocol, port, host },
68
+ error
69
+ } = evt;
70
+ debuglog(
71
+ 'connection to %s using %s%s errored - %s',
72
+ `${host}${port ? `:${port}` : ''}`,
73
+ protocol,
74
+ version,
75
+ error.message
76
+ );
77
+ });
78
+
79
+ diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {
80
+ const {
81
+ request: { method, path, origin }
82
+ } = evt;
83
+ debuglog('sending request to %s %s/%s', method, origin, path);
84
+ });
85
+
86
+ // Track Request events
87
+ diagnosticsChannel.channel('undici:request:headers').subscribe(evt => {
88
+ const {
89
+ request: { method, path, origin },
90
+ response: { statusCode }
91
+ } = evt;
92
+ debuglog(
93
+ 'received response to %s %s/%s - HTTP %d',
94
+ method,
95
+ origin,
96
+ path,
97
+ statusCode
98
+ );
99
+ });
100
+
101
+ diagnosticsChannel.channel('undici:request:trailers').subscribe(evt => {
102
+ const {
103
+ request: { method, path, origin }
104
+ } = evt;
105
+ debuglog('trailers received from %s %s/%s', method, origin, path);
106
+ });
107
+
108
+ diagnosticsChannel.channel('undici:request:error').subscribe(evt => {
109
+ const {
110
+ request: { method, path, origin },
111
+ error
112
+ } = evt;
113
+ debuglog(
114
+ 'request to %s %s/%s errored - %s',
115
+ method,
116
+ origin,
117
+ path,
118
+ error.message
119
+ );
120
+ });
121
+
122
+ isClientSet = true;
123
+ }
124
+
125
+ if (websocketDebuglog.enabled) {
126
+ if (!isClientSet) {
127
+ const debuglog = undiciDebugLog.enabled ? undiciDebugLog : websocketDebuglog;
128
+ diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {
129
+ const {
130
+ connectParams: { version, protocol, port, host }
131
+ } = evt;
132
+ debuglog(
133
+ 'connecting to %s%s using %s%s',
134
+ host,
135
+ port ? `:${port}` : '',
136
+ protocol,
137
+ version
138
+ );
139
+ });
140
+
141
+ diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {
142
+ const {
143
+ connectParams: { version, protocol, port, host }
144
+ } = evt;
145
+ debuglog(
146
+ 'connected to %s%s using %s%s',
147
+ host,
148
+ port ? `:${port}` : '',
149
+ protocol,
150
+ version
151
+ );
152
+ });
153
+
154
+ diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {
155
+ const {
156
+ connectParams: { version, protocol, port, host },
157
+ error
158
+ } = evt;
159
+ debuglog(
160
+ 'connection to %s%s using %s%s errored - %s',
161
+ host,
162
+ port ? `:${port}` : '',
163
+ protocol,
164
+ version,
165
+ error.message
166
+ );
167
+ });
168
+
169
+ diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {
170
+ const {
171
+ request: { method, path, origin }
172
+ } = evt;
173
+ debuglog('sending request to %s %s/%s', method, origin, path);
174
+ });
175
+ }
176
+
177
+ // Track all WebSocket events
178
+ diagnosticsChannel.channel('undici:websocket:open').subscribe(evt => {
179
+ const {
180
+ address: { address, port }
181
+ } = evt;
182
+ websocketDebuglog('connection opened %s%s', address, port ? `:${port}` : '');
183
+ });
184
+
185
+ diagnosticsChannel.channel('undici:websocket:close').subscribe(evt => {
186
+ const { websocket, code, reason } = evt;
187
+ websocketDebuglog(
188
+ 'closed connection to %s - %s %s',
189
+ websocket.url,
190
+ code,
191
+ reason
192
+ );
193
+ });
194
+
195
+ diagnosticsChannel.channel('undici:websocket:socket_error').subscribe(err => {
196
+ websocketDebuglog('connection errored - %s', err.message);
197
+ });
198
+
199
+ diagnosticsChannel.channel('undici:websocket:ping').subscribe(evt => {
200
+ websocketDebuglog('ping received');
201
+ });
202
+
203
+ diagnosticsChannel.channel('undici:websocket:pong').subscribe(evt => {
204
+ websocketDebuglog('pong received');
205
+ });
206
+ }
207
+
208
+ diagnostics = {
209
+ channels
210
+ };
211
+ return diagnostics;
212
+ }
213
+
214
+ export { requireDiagnostics as __require };
215
+ //# sourceMappingURL=diagnostics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"diagnostics.js","sources":["../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/core/diagnostics.js"],"sourcesContent":["'use strict'\nconst diagnosticsChannel = require('node:diagnostics_channel')\nconst util = require('node:util')\n\nconst undiciDebugLog = util.debuglog('undici')\nconst fetchDebuglog = util.debuglog('fetch')\nconst websocketDebuglog = util.debuglog('websocket')\nlet isClientSet = false\nconst channels = {\n // Client\n beforeConnect: diagnosticsChannel.channel('undici:client:beforeConnect'),\n connected: diagnosticsChannel.channel('undici:client:connected'),\n connectError: diagnosticsChannel.channel('undici:client:connectError'),\n sendHeaders: diagnosticsChannel.channel('undici:client:sendHeaders'),\n // Request\n create: diagnosticsChannel.channel('undici:request:create'),\n bodySent: diagnosticsChannel.channel('undici:request:bodySent'),\n headers: diagnosticsChannel.channel('undici:request:headers'),\n trailers: diagnosticsChannel.channel('undici:request:trailers'),\n error: diagnosticsChannel.channel('undici:request:error'),\n // WebSocket\n open: diagnosticsChannel.channel('undici:websocket:open'),\n close: diagnosticsChannel.channel('undici:websocket:close'),\n socketError: diagnosticsChannel.channel('undici:websocket:socket_error'),\n ping: diagnosticsChannel.channel('undici:websocket:ping'),\n pong: diagnosticsChannel.channel('undici:websocket:pong')\n}\n\nif (undiciDebugLog.enabled || fetchDebuglog.enabled) {\n const debuglog = fetchDebuglog.enabled ? fetchDebuglog : undiciDebugLog\n\n // Track all Client events\n diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connecting to %s using %s%s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connected to %s using %s%s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host },\n error\n } = evt\n debuglog(\n 'connection to %s using %s%s errored - %s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version,\n error.message\n )\n })\n\n diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('sending request to %s %s/%s', method, origin, path)\n })\n\n // Track Request events\n diagnosticsChannel.channel('undici:request:headers').subscribe(evt => {\n const {\n request: { method, path, origin },\n response: { statusCode }\n } = evt\n debuglog(\n 'received response to %s %s/%s - HTTP %d',\n method,\n origin,\n path,\n statusCode\n )\n })\n\n diagnosticsChannel.channel('undici:request:trailers').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('trailers received from %s %s/%s', method, origin, path)\n })\n\n diagnosticsChannel.channel('undici:request:error').subscribe(evt => {\n const {\n request: { method, path, origin },\n error\n } = evt\n debuglog(\n 'request to %s %s/%s errored - %s',\n method,\n origin,\n path,\n error.message\n )\n })\n\n isClientSet = true\n}\n\nif (websocketDebuglog.enabled) {\n if (!isClientSet) {\n const debuglog = undiciDebugLog.enabled ? undiciDebugLog : websocketDebuglog\n diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connecting to %s%s using %s%s',\n host,\n port ? `:${port}` : '',\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connected to %s%s using %s%s',\n host,\n port ? `:${port}` : '',\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host },\n error\n } = evt\n debuglog(\n 'connection to %s%s using %s%s errored - %s',\n host,\n port ? `:${port}` : '',\n protocol,\n version,\n error.message\n )\n })\n\n diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('sending request to %s %s/%s', method, origin, path)\n })\n }\n\n // Track all WebSocket events\n diagnosticsChannel.channel('undici:websocket:open').subscribe(evt => {\n const {\n address: { address, port }\n } = evt\n websocketDebuglog('connection opened %s%s', address, port ? `:${port}` : '')\n })\n\n diagnosticsChannel.channel('undici:websocket:close').subscribe(evt => {\n const { websocket, code, reason } = evt\n websocketDebuglog(\n 'closed connection to %s - %s %s',\n websocket.url,\n code,\n reason\n )\n })\n\n diagnosticsChannel.channel('undici:websocket:socket_error').subscribe(err => {\n websocketDebuglog('connection errored - %s', err.message)\n })\n\n diagnosticsChannel.channel('undici:websocket:ping').subscribe(evt => {\n websocketDebuglog('ping received')\n })\n\n diagnosticsChannel.channel('undici:websocket:pong').subscribe(evt => {\n websocketDebuglog('pong received')\n })\n}\n\nmodule.exports = {\n channels\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}