├── .devcontainer └── devcontainer.json ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── documentation-issues.yml │ └── feature-request.yml └── workflows │ ├── check-dist.yml │ ├── codeql-analysis.yml │ ├── licensed.yml │ ├── publish-immutable-actions.yml │ ├── release-new-action-version.yml │ └── test.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── npm │ ├── @actions │ ├── artifact.dep.yml │ ├── core.dep.yml │ ├── github.dep.yml │ └── http-client.dep.yml │ ├── @azure │ ├── abort-controller.dep.yml │ ├── core-auth.dep.yml │ ├── core-http.dep.yml │ ├── core-lro.dep.yml │ ├── core-paging.dep.yml │ ├── core-tracing.dep.yml │ ├── core-util.dep.yml │ ├── logger.dep.yml │ └── storage-blob.dep.yml │ ├── @fastify │ └── busboy.dep.yml │ ├── @octokit │ ├── auth-token.dep.yml │ ├── core.dep.yml │ ├── endpoint.dep.yml │ ├── graphql.dep.yml │ ├── openapi-types-12.11.0.dep.yml │ ├── openapi-types-19.1.0.dep.yml │ ├── plugin-paginate-rest.dep.yml │ ├── plugin-request-log.dep.yml │ ├── plugin-rest-endpoint-methods.dep.yml │ ├── plugin-retry.dep.yml │ ├── request-error-2.1.0.dep.yml │ ├── request-error-5.0.1.dep.yml │ ├── request.dep.yml │ ├── types-12.4.0.dep.yml │ └── types-6.41.0.dep.yml │ ├── @opentelemetry │ └── api.dep.yml │ ├── @protobuf-ts │ ├── plugin-framework.dep.yml │ ├── plugin.dep.yml │ ├── protoc.dep.yml │ ├── runtime-rpc.dep.yml │ └── runtime.dep.yml │ ├── @types │ ├── node-fetch.dep.yml │ ├── node.dep.yml │ └── tunnel.dep.yml │ ├── archiver-utils-2.1.0.dep.yml │ ├── archiver-utils-3.0.4.dep.yml │ ├── archiver.dep.yml │ ├── async.dep.yml │ ├── asynckit.dep.yml │ ├── balanced-match.dep.yml │ ├── base64-js.dep.yml │ ├── before-after-hook.dep.yml │ ├── binary.dep.yml │ ├── bl.dep.yml │ ├── bottleneck.dep.yml │ ├── brace-expansion-1.1.11.dep.yml │ ├── brace-expansion-2.0.1.dep.yml │ ├── buffer-crc32.dep.yml │ ├── buffer.dep.yml │ ├── buffers.dep.yml │ ├── camel-case.dep.yml │ ├── chainsaw.dep.yml │ ├── combined-stream.dep.yml │ ├── commander.dep.yml │ ├── compress-commons.dep.yml │ ├── concat-map.dep.yml │ ├── core-util-is.dep.yml │ ├── crc-32.dep.yml │ ├── crc32-stream.dep.yml │ ├── crypto.dep.yml │ ├── delayed-stream.dep.yml │ ├── deprecation.dep.yml │ ├── dot-object.dep.yml │ ├── end-of-stream.dep.yml │ ├── events.dep.yml │ ├── form-data.dep.yml │ ├── fs-constants.dep.yml │ ├── fs.realpath.dep.yml │ ├── glob.dep.yml │ ├── graceful-fs.dep.yml │ ├── ieee754.dep.yml │ ├── inflight.dep.yml │ ├── inherits.dep.yml │ ├── is-plain-object.dep.yml │ ├── isarray.dep.yml │ ├── jwt-decode.dep.yml │ ├── lazystream.dep.yml │ ├── lodash.defaults.dep.yml │ ├── lodash.dep.yml │ ├── lodash.difference.dep.yml │ ├── lodash.flatten.dep.yml │ ├── lodash.isplainobject.dep.yml │ ├── lodash.union.dep.yml │ ├── lower-case.dep.yml │ ├── mime-db.dep.yml │ ├── mime-types.dep.yml │ ├── minimatch-3.1.2.dep.yml │ ├── minimatch-5.1.6.dep.yml │ ├── minimatch-9.0.3.dep.yml │ ├── minimatch.dep.yml │ ├── minimist.dep.yml │ ├── mkdirp.dep.yml │ ├── no-case.dep.yml │ ├── node-fetch.dep.yml │ ├── normalize-path.dep.yml │ ├── once.dep.yml │ ├── pascal-case.dep.yml │ ├── path-is-absolute.dep.yml │ ├── path-to-regexp.dep.yml │ ├── prettier.dep.yml │ ├── process-nextick-args.dep.yml │ ├── process.dep.yml │ ├── readable-stream-2.3.8.dep.yml │ ├── readable-stream-3.6.2.dep.yml │ ├── readdir-glob.dep.yml │ ├── safe-buffer-5.1.2.dep.yml │ ├── safe-buffer-5.2.1.dep.yml │ ├── sax.dep.yml │ ├── string_decoder-1.1.1.dep.yml │ ├── string_decoder-1.3.0.dep.yml │ ├── tar-stream.dep.yml │ ├── tr46.dep.yml │ ├── traverse.dep.yml │ ├── ts-poet.dep.yml │ ├── tslib.dep.yml │ ├── tunnel.dep.yml │ ├── twirp-ts.dep.yml │ ├── typescript.dep.yml │ ├── undici.dep.yml │ ├── universal-user-agent.dep.yml │ ├── unzip-stream.dep.yml │ ├── util-deprecate.dep.yml │ ├── uuid.dep.yml │ ├── webidl-conversions.dep.yml │ ├── whatwg-url.dep.yml │ ├── wrappy.dep.yml │ ├── xml2js.dep.yml │ ├── xmlbuilder.dep.yml │ ├── yaml.dep.yml │ └── zip-stream.dep.yml ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── download.test.ts ├── action.yml ├── dist └── index.js ├── docs └── MIGRATION.md ├── jest.config.ts ├── package.json ├── src ├── constants.ts └── download-artifact.ts └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | dist/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | .licenses/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/ISSUE_TEMPLATE/documentation-issues.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/publish-immutable-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/publish-immutable-actions.yml -------------------------------------------------------------------------------- /.github/workflows/release-new-action-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/release-new-action-version.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/artifact.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@actions/artifact.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@actions/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/github.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@actions/github.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/http-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@actions/http-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/abort-controller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/abort-controller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-auth.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-auth.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-http.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-lro.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-lro.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-paging.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-paging.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-tracing.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-tracing.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-util.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/core-util.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/logger.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/logger.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/storage-blob.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@azure/storage-blob.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@fastify/busboy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@fastify/busboy.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/auth-token.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/auth-token.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/endpoint.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/endpoint.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/graphql.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/graphql.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/openapi-types-12.11.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/openapi-types-12.11.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/openapi-types-19.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/openapi-types-19.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-paginate-rest.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/plugin-paginate-rest.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-request-log.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/plugin-request-log.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-retry.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/plugin-retry.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-2.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/request-error-2.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-5.0.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/request-error-5.0.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/request.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types-12.4.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/types-12.4.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types-6.41.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@octokit/types-6.41.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@opentelemetry/api.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@opentelemetry/api.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@protobuf-ts/plugin-framework.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@protobuf-ts/plugin-framework.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@protobuf-ts/plugin.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@protobuf-ts/plugin.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@protobuf-ts/protoc.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@protobuf-ts/protoc.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@protobuf-ts/runtime.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@protobuf-ts/runtime.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/node-fetch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@types/node-fetch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@types/node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/@types/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/archiver-utils-2.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/archiver-utils-2.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/archiver-utils-3.0.4.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/archiver-utils-3.0.4.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/archiver.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/archiver.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/async.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/async.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/asynckit.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/asynckit.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/balanced-match.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/balanced-match.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/base64-js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/base64-js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/before-after-hook.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/before-after-hook.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/binary.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/binary.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/bl.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/bl.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/bottleneck.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/bottleneck.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/brace-expansion-1.1.11.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/brace-expansion-1.1.11.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/brace-expansion-2.0.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/brace-expansion-2.0.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/buffer-crc32.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/buffer-crc32.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/buffer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/buffer.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/buffers.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/buffers.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/camel-case.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/camel-case.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/chainsaw.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/chainsaw.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/combined-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/combined-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/commander.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/commander.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/compress-commons.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/compress-commons.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/concat-map.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/concat-map.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/core-util-is.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/core-util-is.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/crc-32.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/crc-32.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/crc32-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/crc32-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/crypto.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/crypto.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/delayed-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/delayed-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/deprecation.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/deprecation.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/dot-object.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/dot-object.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/end-of-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/end-of-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/events.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/events.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/form-data.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/form-data.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/fs-constants.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/fs-constants.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/fs.realpath.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/fs.realpath.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/glob.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/glob.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/graceful-fs.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/graceful-fs.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/ieee754.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/ieee754.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/inflight.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/inflight.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/inherits.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/inherits.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/is-plain-object.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/is-plain-object.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/isarray.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/isarray.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/jwt-decode.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/jwt-decode.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lazystream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lazystream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.defaults.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.defaults.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.difference.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.difference.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.flatten.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.flatten.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.isplainobject.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.isplainobject.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lodash.union.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lodash.union.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/lower-case.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/lower-case.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/mime-db.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/mime-db.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/mime-types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/mime-types.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimatch-3.1.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/minimatch-3.1.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimatch-5.1.6.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/minimatch-5.1.6.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimatch-9.0.3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/minimatch-9.0.3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimatch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/minimatch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimist.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/minimist.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/mkdirp.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/mkdirp.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/no-case.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/no-case.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/node-fetch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/node-fetch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/normalize-path.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/normalize-path.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/once.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/once.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/pascal-case.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/pascal-case.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/path-is-absolute.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/path-is-absolute.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/path-to-regexp.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/path-to-regexp.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/prettier.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/prettier.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/process-nextick-args.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/process-nextick-args.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/process.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/process.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/readable-stream-2.3.8.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/readable-stream-2.3.8.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/readable-stream-3.6.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/readable-stream-3.6.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/readdir-glob.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/readdir-glob.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/safe-buffer-5.1.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/safe-buffer-5.1.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/safe-buffer-5.2.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/safe-buffer-5.2.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/sax.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/sax.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/string_decoder-1.1.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/string_decoder-1.1.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/string_decoder-1.3.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/string_decoder-1.3.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tar-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/tar-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tr46.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/tr46.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/traverse.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/traverse.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/ts-poet.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/ts-poet.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tslib.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/tslib.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/twirp-ts.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/twirp-ts.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/typescript.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/typescript.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/undici.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/undici.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/universal-user-agent.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/universal-user-agent.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/unzip-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/unzip-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/util-deprecate.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/util-deprecate.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/uuid.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/uuid.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/webidl-conversions.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/webidl-conversions.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/whatwg-url.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/whatwg-url.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/wrappy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/wrappy.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/xml2js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/xml2js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/xmlbuilder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/xmlbuilder.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/yaml.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/yaml.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/zip-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.licenses/npm/zip-stream.dep.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/download.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/__tests__/download.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/dist/index.js -------------------------------------------------------------------------------- /docs/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/docs/MIGRATION.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/download-artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/src/download-artifact.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/download-artifact/HEAD/tsconfig.json --------------------------------------------------------------------------------