├── .devcontainer └── devcontainer.json ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── check-dist.yml │ ├── close-inactive-issues.yml │ ├── codeql.yml │ ├── issue-opened-workflow.yml │ ├── licensed.yml │ ├── pr-opened-workflow.yml │ └── workflow.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── npm │ ├── @actions │ ├── cache.dep.yml │ ├── core.dep.yml │ ├── exec.dep.yml │ ├── glob.dep.yml │ ├── http-client.dep.yml │ └── io.dep.yml │ ├── @aws-crypto │ ├── crc32.dep.yml │ ├── ie11-detection.dep.yml │ ├── sha256-browser.dep.yml │ ├── sha256-js.dep.yml │ ├── supports-web-crypto.dep.yml │ └── util.dep.yml │ ├── @aws-sdk │ ├── abort-controller.dep.yml │ ├── chunked-blob-reader-native.dep.yml │ ├── chunked-blob-reader.dep.yml │ ├── client-s3.dep.yml │ ├── client-sso.dep.yml │ ├── client-sts.dep.yml │ ├── config-resolver.dep.yml │ ├── credential-provider-env.dep.yml │ ├── credential-provider-imds.dep.yml │ ├── credential-provider-ini.dep.yml │ ├── credential-provider-node.dep.yml │ ├── credential-provider-process.dep.yml │ ├── credential-provider-sso.dep.yml │ ├── credential-provider-web-identity.dep.yml │ ├── eventstream-marshaller.dep.yml │ ├── eventstream-serde-browser.dep.yml │ ├── eventstream-serde-config-resolver.dep.yml │ ├── eventstream-serde-node.dep.yml │ ├── eventstream-serde-universal.dep.yml │ ├── fetch-http-handler.dep.yml │ ├── hash-blob-browser.dep.yml │ ├── hash-node.dep.yml │ ├── hash-stream-node.dep.yml │ ├── invalid-dependency.dep.yml │ ├── is-array-buffer.dep.yml │ ├── lib-storage.dep.yml │ ├── md5-js.dep.yml │ ├── middleware-apply-body-checksum.dep.yml │ ├── middleware-bucket-endpoint.dep.yml │ ├── middleware-content-length.dep.yml │ ├── middleware-expect-continue.dep.yml │ ├── middleware-header-default.dep.yml │ ├── middleware-host-header.dep.yml │ ├── middleware-location-constraint.dep.yml │ ├── middleware-logger.dep.yml │ ├── middleware-retry.dep.yml │ ├── middleware-sdk-s3.dep.yml │ ├── middleware-sdk-sts.dep.yml │ ├── middleware-serde.dep.yml │ ├── middleware-signing.dep.yml │ ├── middleware-ssec.dep.yml │ ├── middleware-stack.dep.yml │ ├── middleware-user-agent.dep.yml │ ├── node-config-provider.dep.yml │ ├── node-http-handler.dep.yml │ ├── property-provider.dep.yml │ ├── protocol-http.dep.yml │ ├── querystring-builder.dep.yml │ ├── querystring-parser.dep.yml │ ├── service-error-classification.dep.yml │ ├── shared-ini-file-loader.dep.yml │ ├── signature-v4.dep.yml │ ├── smithy-client.dep.yml │ ├── types.dep.yml │ ├── url-parser.dep.yml │ ├── util-arn-parser.dep.yml │ ├── util-base64-browser.dep.yml │ ├── util-base64-node.dep.yml │ ├── util-body-length-browser.dep.yml │ ├── util-body-length-node.dep.yml │ ├── util-buffer-from.dep.yml │ ├── util-config-provider.dep.yml │ ├── util-credentials.dep.yml │ ├── util-defaults-mode-browser.dep.yml │ ├── util-defaults-mode-node.dep.yml │ ├── util-hex-encoding.dep.yml │ ├── util-locate-window.dep.yml │ ├── util-uri-escape.dep.yml │ ├── util-user-agent-browser.dep.yml │ ├── util-user-agent-node.dep.yml │ ├── util-utf8-browser.dep.yml │ ├── util-utf8-node.dep.yml │ ├── util-waiter.dep.yml │ └── xml-builder.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 │ ├── ms-rest-js.dep.yml │ └── storage-blob.dep.yml │ ├── @opentelemetry │ └── api.dep.yml │ ├── @smithy │ ├── abort-controller.dep.yml │ ├── fetch-http-handler.dep.yml │ ├── is-array-buffer.dep.yml │ ├── middleware-endpoint.dep.yml │ ├── middleware-serde.dep.yml │ ├── middleware-stack.dep.yml │ ├── node-config-provider.dep.yml │ ├── node-http-handler.dep.yml │ ├── property-provider.dep.yml │ ├── protocol-http.dep.yml │ ├── querystring-builder.dep.yml │ ├── querystring-parser.dep.yml │ ├── shared-ini-file-loader.dep.yml │ ├── smithy-client.dep.yml │ ├── types.dep.yml │ ├── url-parser.dep.yml │ ├── util-base64.dep.yml │ ├── util-buffer-from.dep.yml │ ├── util-hex-encoding.dep.yml │ ├── util-middleware.dep.yml │ ├── util-stream.dep.yml │ ├── util-uri-escape.dep.yml │ └── util-utf8.dep.yml │ ├── @types │ ├── node-fetch.dep.yml │ ├── node.dep.yml │ └── tunnel.dep.yml │ ├── abort-controller.dep.yml │ ├── asynckit.dep.yml │ ├── balanced-match.dep.yml │ ├── base64-js.dep.yml │ ├── bowser.dep.yml │ ├── brace-expansion.dep.yml │ ├── buffer.dep.yml │ ├── combined-stream.dep.yml │ ├── concat-map.dep.yml │ ├── delayed-stream.dep.yml │ ├── entities.dep.yml │ ├── event-target-shim.dep.yml │ ├── events.dep.yml │ ├── fast-xml-parser.dep.yml │ ├── form-data-2.5.1.dep.yml │ ├── form-data-4.0.0.dep.yml │ ├── ieee754.dep.yml │ ├── inherits.dep.yml │ ├── mime-db.dep.yml │ ├── mime-types.dep.yml │ ├── minimatch.dep.yml │ ├── node-fetch.dep.yml │ ├── process.dep.yml │ ├── readable-stream.dep.yml │ ├── safe-buffer.dep.yml │ ├── sax.dep.yml │ ├── semver.dep.yml │ ├── stream-browserify.dep.yml │ ├── string_decoder.dep.yml │ ├── tr46.dep.yml │ ├── tslib-1.14.1.dep.yml │ ├── tslib-2.3.1.dep.yml │ ├── tslib-2.6.2.dep.yml │ ├── tunnel.dep.yml │ ├── util-deprecate.dep.yml │ ├── uuid-3.4.0.dep.yml │ ├── uuid-8.3.2.dep.yml │ ├── webidl-conversions.dep.yml │ ├── whatwg-url.dep.yml │ ├── xml2js.dep.yml │ └── xmlbuilder.dep.yml ├── .prettierrc.json ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASES.md ├── __tests__ ├── __fixtures__ │ └── helloWorld.txt ├── actionUtils.test.ts ├── create-cache-files.sh ├── restore.test.ts ├── restoreImpl.test.ts ├── restoreOnly.test.ts ├── save.test.ts ├── saveImpl.test.ts ├── saveOnly.test.ts ├── stateProvider.test.ts └── verify-cache-files.sh ├── action.yml ├── caching-strategies.md ├── dist ├── restore-only │ └── index.js ├── restore │ └── index.js ├── save-only │ └── index.js └── save │ └── index.js ├── examples.md ├── jest.config.js ├── package.json ├── restore ├── README.md └── action.yml ├── save ├── README.md └── action.yml ├── src ├── constants.ts ├── restore.ts ├── restoreImpl.ts ├── restoreOnly.ts ├── save.ts ├── saveImpl.ts ├── saveOnly.ts ├── stateProvider.ts └── utils │ ├── actionUtils.ts │ └── testUtils.ts ├── tips-and-workarounds.md └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .licenses/** -diff linguist-generated=true 2 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/close-inactive-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/close-inactive-issues.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/issue-opened-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/issue-opened-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/pr-opened-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/pr-opened-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/cache.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/cache.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/exec.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/exec.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/glob.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/glob.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/http-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/http-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/io.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@actions/io.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/crc32.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/crc32.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/ie11-detection.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/ie11-detection.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/sha256-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/sha256-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/sha256-js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/sha256-js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/supports-web-crypto.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/supports-web-crypto.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-crypto/util.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-crypto/util.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/abort-controller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/abort-controller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/chunked-blob-reader-native.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/chunked-blob-reader-native.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/chunked-blob-reader.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/chunked-blob-reader.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/client-s3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/client-s3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/client-sso.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/client-sso.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/client-sts.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/client-sts.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/config-resolver.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/config-resolver.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-env.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-env.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-imds.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-imds.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-ini.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-ini.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-process.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-process.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-sso.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-sso.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/credential-provider-web-identity.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/credential-provider-web-identity.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/eventstream-marshaller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/eventstream-marshaller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/eventstream-serde-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/eventstream-serde-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/eventstream-serde-config-resolver.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/eventstream-serde-config-resolver.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/eventstream-serde-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/eventstream-serde-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/eventstream-serde-universal.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/eventstream-serde-universal.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/fetch-http-handler.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/fetch-http-handler.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/hash-blob-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/hash-blob-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/hash-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/hash-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/hash-stream-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/hash-stream-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/invalid-dependency.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/invalid-dependency.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/is-array-buffer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/is-array-buffer.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/lib-storage.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/lib-storage.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/md5-js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/md5-js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-apply-body-checksum.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-apply-body-checksum.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-bucket-endpoint.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-bucket-endpoint.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-content-length.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-content-length.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-expect-continue.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-expect-continue.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-header-default.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-header-default.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-host-header.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-host-header.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-location-constraint.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-location-constraint.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-logger.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-logger.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-retry.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-retry.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-sdk-s3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-sdk-s3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-sdk-sts.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-sdk-sts.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-serde.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-serde.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-signing.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-signing.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-ssec.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-ssec.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-stack.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-stack.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/middleware-user-agent.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/middleware-user-agent.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/node-config-provider.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/node-config-provider.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/node-http-handler.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/node-http-handler.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/property-provider.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/property-provider.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/protocol-http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/protocol-http.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/querystring-builder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/querystring-builder.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/querystring-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/querystring-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/service-error-classification.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/service-error-classification.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/shared-ini-file-loader.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/shared-ini-file-loader.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/signature-v4.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/signature-v4.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/smithy-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/smithy-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/types.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/url-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/url-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-arn-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-arn-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-base64-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-base64-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-base64-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-base64-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-body-length-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-body-length-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-body-length-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-body-length-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-buffer-from.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-buffer-from.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-config-provider.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-config-provider.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-credentials.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-credentials.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-defaults-mode-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-defaults-mode-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-defaults-mode-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-defaults-mode-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-hex-encoding.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-hex-encoding.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-locate-window.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-locate-window.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-uri-escape.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-uri-escape.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-user-agent-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-user-agent-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-user-agent-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-user-agent-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-utf8-browser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-utf8-browser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-utf8-node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-utf8-node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/util-waiter.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/util-waiter.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@aws-sdk/xml-builder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@aws-sdk/xml-builder.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/abort-controller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/abort-controller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-auth.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-auth.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-http.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-lro.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-lro.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-paging.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-paging.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-tracing.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-tracing.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/core-util.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/core-util.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/logger.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/logger.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/ms-rest-js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/ms-rest-js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@azure/storage-blob.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@azure/storage-blob.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@opentelemetry/api.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@opentelemetry/api.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/abort-controller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/abort-controller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/fetch-http-handler.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/fetch-http-handler.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/is-array-buffer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/is-array-buffer.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/middleware-endpoint.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/middleware-endpoint.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/middleware-serde.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/middleware-serde.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/middleware-stack.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/middleware-stack.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/node-config-provider.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/node-config-provider.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/node-http-handler.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/node-http-handler.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/property-provider.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/property-provider.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/protocol-http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/protocol-http.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/querystring-builder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/querystring-builder.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/querystring-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/querystring-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/shared-ini-file-loader.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/shared-ini-file-loader.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/smithy-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/smithy-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/types.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/url-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/url-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-base64.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-base64.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-buffer-from.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-buffer-from.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-hex-encoding.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-hex-encoding.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-middleware.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-middleware.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-uri-escape.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-uri-escape.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@smithy/util-utf8.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@smithy/util-utf8.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/node-fetch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@types/node-fetch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/node.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@types/node.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@types/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/@types/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/abort-controller.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/abort-controller.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/asynckit.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/asynckit.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/balanced-match.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/balanced-match.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/base64-js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/base64-js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/bowser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/bowser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/brace-expansion.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/brace-expansion.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/buffer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/buffer.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/combined-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/combined-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/concat-map.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/concat-map.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/delayed-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/delayed-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/entities.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/entities.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/event-target-shim.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/event-target-shim.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/events.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/events.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/fast-xml-parser.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/fast-xml-parser.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/form-data-2.5.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/form-data-2.5.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/form-data-4.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/form-data-4.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/ieee754.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/ieee754.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/inherits.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/inherits.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/mime-db.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/mime-db.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/mime-types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/mime-types.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/minimatch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/minimatch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/node-fetch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/node-fetch.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/process.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/process.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/readable-stream.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/readable-stream.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/safe-buffer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/safe-buffer.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/sax.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/sax.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/semver.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/semver.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/stream-browserify.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/stream-browserify.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/string_decoder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/string_decoder.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tr46.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/tr46.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tslib-1.14.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/tslib-1.14.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tslib-2.3.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/tslib-2.3.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tslib-2.6.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/tslib-2.6.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/util-deprecate.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/util-deprecate.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/uuid-3.4.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/uuid-3.4.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/uuid-8.3.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/uuid-8.3.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/webidl-conversions.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/webidl-conversions.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/whatwg-url.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/whatwg-url.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/xml2js.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/xml2js.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/xmlbuilder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.licenses/npm/xmlbuilder.dep.yml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/RELEASES.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/helloWorld.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /__tests__/actionUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/actionUtils.test.ts -------------------------------------------------------------------------------- /__tests__/create-cache-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/create-cache-files.sh -------------------------------------------------------------------------------- /__tests__/restore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/restore.test.ts -------------------------------------------------------------------------------- /__tests__/restoreImpl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/restoreImpl.test.ts -------------------------------------------------------------------------------- /__tests__/restoreOnly.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/restoreOnly.test.ts -------------------------------------------------------------------------------- /__tests__/save.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/save.test.ts -------------------------------------------------------------------------------- /__tests__/saveImpl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/saveImpl.test.ts -------------------------------------------------------------------------------- /__tests__/saveOnly.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/saveOnly.test.ts -------------------------------------------------------------------------------- /__tests__/stateProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/stateProvider.test.ts -------------------------------------------------------------------------------- /__tests__/verify-cache-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/__tests__/verify-cache-files.sh -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/action.yml -------------------------------------------------------------------------------- /caching-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/caching-strategies.md -------------------------------------------------------------------------------- /dist/restore-only/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/dist/restore-only/index.js -------------------------------------------------------------------------------- /dist/restore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/dist/restore/index.js -------------------------------------------------------------------------------- /dist/save-only/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/dist/save-only/index.js -------------------------------------------------------------------------------- /dist/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/dist/save/index.js -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/examples.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/package.json -------------------------------------------------------------------------------- /restore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/restore/README.md -------------------------------------------------------------------------------- /restore/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/restore/action.yml -------------------------------------------------------------------------------- /save/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/save/README.md -------------------------------------------------------------------------------- /save/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/save/action.yml -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/restore.ts -------------------------------------------------------------------------------- /src/restoreImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/restoreImpl.ts -------------------------------------------------------------------------------- /src/restoreOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/restoreOnly.ts -------------------------------------------------------------------------------- /src/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/save.ts -------------------------------------------------------------------------------- /src/saveImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/saveImpl.ts -------------------------------------------------------------------------------- /src/saveOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/saveOnly.ts -------------------------------------------------------------------------------- /src/stateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/stateProvider.ts -------------------------------------------------------------------------------- /src/utils/actionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/utils/actionUtils.ts -------------------------------------------------------------------------------- /src/utils/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/src/utils/testUtils.ts -------------------------------------------------------------------------------- /tips-and-workarounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/tips-and-workarounds.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whywaita/actions-cache-s3/HEAD/tsconfig.json --------------------------------------------------------------------------------