├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── check-action-typing.yml │ ├── gradle-wrapper-validation.yml │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── action-types.yml ├── action.yml ├── cache-action-entrypoint ├── build.gradle.kts ├── src │ ├── jsMain │ │ └── kotlin │ │ │ ├── main.kt │ │ │ └── stringArgv.kt │ └── jsTest │ │ └── kotlin │ │ └── com │ │ └── github │ │ └── burrunan │ │ ├── ArgumentsTest.kt │ │ └── SplitLinesTest.kt └── webpack.config.d │ └── config.js ├── cache-proxy ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── burrunan │ │ └── gradle │ │ └── proxy │ │ └── CacheProxy.kt │ └── jsTest │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── gradle │ └── proxy │ └── CacheProxyTest.kt ├── cache-service-mock ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── gradle │ └── cache │ ├── CacheService.kt │ ├── CacheStorage.kt │ ├── HttpException.kt │ └── HttpExtensions.kt ├── gradle-launcher ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── burrunan │ │ └── launcher │ │ ├── GradleDistribution.kt │ │ ├── GradleInstaller.kt │ │ ├── GradleLauncher.kt │ │ ├── GradleVersion.kt │ │ ├── GradleVersionResponse.kt │ │ ├── LaunchParams.kt │ │ └── internal │ │ ├── GradleError.kt │ │ ├── GradleErrorCollector.kt │ │ └── GradleOutErrorCollector.kt │ └── jsTest │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── launcher │ ├── PropertiesParserTest.kt │ ├── RetrieveGradleVersionTest.kt │ └── internal │ ├── GradleErrorCollectorTest.kt │ └── GradleOutCollectorTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hashing ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── hashing │ ├── HashDetails.kt │ ├── diff.kt │ └── hashFiles.kt ├── layered-cache ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── github │ │ └── burrunan │ │ └── gradle │ │ ├── GradleCacheAction.kt │ │ ├── Parameters.kt │ │ ├── cache │ │ ├── ActionsTriggerExtensions.kt │ │ ├── Cache.kt │ │ ├── CompositeCache.kt │ │ ├── DefaultCache.kt │ │ ├── GradleGeneratedJarsCache.kt │ │ ├── LayeredCache.kt │ │ ├── MetadataFile.kt │ │ ├── dependenciesCache.kt │ │ └── localBuildCache.kt │ │ └── github │ │ └── StateExtensions.kt │ └── jsTest │ ├── kotlin │ └── com │ │ └── github │ │ └── burrunan │ │ └── gradle │ │ ├── CacheServerTest.kt │ │ └── GlobTest.kt │ └── resources │ └── readme.txt ├── renovate.json ├── settings.gradle.kts ├── test-library ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── test │ └── testExtensions.kt └── wrappers ├── actions-cache ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── actions │ └── cache │ ├── CacheExtensions.kt │ ├── RestoreType.kt │ ├── internal │ ├── CacheContract.kt │ └── httpclient.kt │ └── types.kt ├── actions-toolkit ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── actions │ ├── core │ ├── ActionFailedException.kt │ ├── ActionStage.kt │ ├── ActionsEnvironment.kt │ ├── LogLevel.kt │ ├── LoggingExtensions.kt │ └── ext │ │ ├── Group.kt │ │ └── InputExtensions.kt │ ├── exec │ └── ExecExtensions.kt │ └── glob │ └── removeFiles.kt ├── java-properties ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── javaproperties │ ├── index.module_java-properties.kt │ └── parseString.kt ├── js └── src │ └── jsMain │ └── kotlin │ └── com │ └── github │ └── burrunan │ ├── formatBytes.kt │ └── wrappers │ └── js │ └── SuspendExtensions.kt ├── nodejs ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── github │ └── burrunan │ └── wrappers │ └── nodejs │ ├── FsExtensions.kt │ └── StreamExtensions.kt ├── octokit-request-error ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── octokit │ └── requesterror │ ├── index.module_@octokit_request-error.kt │ └── types.module_@octokit_request-error.kt ├── octokit-types ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── octokit │ └── types │ ├── AuthInterface.module_@octokit_types.kt │ ├── EndpointDefaults.module_@octokit_types.kt │ ├── EndpointInterface.module_@octokit_types.kt │ ├── EndpointOptions.module_@octokit_types.kt │ ├── Fetch.module_@octokit_types.kt │ ├── GetResponseTypeFromEndpointMethod.module_@octokit_types.kt │ ├── OctokitResponse.module_@octokit_types.kt │ ├── RequestError.module_@octokit_types.kt │ ├── RequestHeaders.module_@octokit_types.kt │ ├── RequestInterface.module_@octokit_types.kt │ ├── RequestOptions.module_@octokit_types.kt │ ├── RequestParameters.module_@octokit_types.kt │ ├── RequestRequestOptions.module_@octokit_types.kt │ ├── ResponseHeaders.module_@octokit_types.kt │ ├── Route.module_@octokit_types.kt │ ├── Signal.module_@octokit_types.kt │ ├── StrategyInterface.module_@octokit_types.kt │ ├── Url.module_@octokit_types.kt │ └── VERSION.module_@octokit_types.kt └── octokit-webhooks ├── build.gradle.kts └── src └── jsMain └── kotlin └── octokit ├── ActionsTrigger.kt └── webhooks ├── ResponseHeaders.module_@octokit_types.kt ├── event-payloads.EventPayloads.module_@octokit_webhooks.kt ├── get-webhook-payload-type-from-event.module_@octokit_webhooks.kt ├── index.module_@octokit_webhooks.kt └── types.module_@octokit_webhooks.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check-action-typing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.github/workflows/check-action-typing.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-wrapper-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.github/workflows/gradle-wrapper-validation.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/README.md -------------------------------------------------------------------------------- /action-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/action-types.yml -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/action.yml -------------------------------------------------------------------------------- /cache-action-entrypoint/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/build.gradle.kts -------------------------------------------------------------------------------- /cache-action-entrypoint/src/jsMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/src/jsMain/kotlin/main.kt -------------------------------------------------------------------------------- /cache-action-entrypoint/src/jsMain/kotlin/stringArgv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/src/jsMain/kotlin/stringArgv.kt -------------------------------------------------------------------------------- /cache-action-entrypoint/src/jsTest/kotlin/com/github/burrunan/ArgumentsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/src/jsTest/kotlin/com/github/burrunan/ArgumentsTest.kt -------------------------------------------------------------------------------- /cache-action-entrypoint/src/jsTest/kotlin/com/github/burrunan/SplitLinesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/src/jsTest/kotlin/com/github/burrunan/SplitLinesTest.kt -------------------------------------------------------------------------------- /cache-action-entrypoint/webpack.config.d/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-action-entrypoint/webpack.config.d/config.js -------------------------------------------------------------------------------- /cache-proxy/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-proxy/build.gradle.kts -------------------------------------------------------------------------------- /cache-proxy/src/jsMain/kotlin/com/github/burrunan/gradle/proxy/CacheProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-proxy/src/jsMain/kotlin/com/github/burrunan/gradle/proxy/CacheProxy.kt -------------------------------------------------------------------------------- /cache-proxy/src/jsTest/kotlin/com/github/burrunan/gradle/proxy/CacheProxyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-proxy/src/jsTest/kotlin/com/github/burrunan/gradle/proxy/CacheProxyTest.kt -------------------------------------------------------------------------------- /cache-service-mock/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-service-mock/build.gradle.kts -------------------------------------------------------------------------------- /cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CacheService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CacheService.kt -------------------------------------------------------------------------------- /cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CacheStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CacheStorage.kt -------------------------------------------------------------------------------- /cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/HttpException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/HttpException.kt -------------------------------------------------------------------------------- /cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/HttpExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/cache-service-mock/src/jsMain/kotlin/com/github/burrunan/gradle/cache/HttpExtensions.kt -------------------------------------------------------------------------------- /gradle-launcher/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/build.gradle.kts -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleDistribution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleDistribution.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleInstaller.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleLauncher.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleVersion.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleVersionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/GradleVersionResponse.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/LaunchParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/LaunchParams.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleError.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleErrorCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleErrorCollector.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleOutErrorCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsMain/kotlin/com/github/burrunan/launcher/internal/GradleOutErrorCollector.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/PropertiesParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/PropertiesParserTest.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/RetrieveGradleVersionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/RetrieveGradleVersionTest.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/internal/GradleErrorCollectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/internal/GradleErrorCollectorTest.kt -------------------------------------------------------------------------------- /gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/internal/GradleOutCollectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle-launcher/src/jsTest/kotlin/com/github/burrunan/launcher/internal/GradleOutCollectorTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hashing/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/hashing/build.gradle.kts -------------------------------------------------------------------------------- /hashing/src/jsMain/kotlin/com/github/burrunan/hashing/HashDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/hashing/src/jsMain/kotlin/com/github/burrunan/hashing/HashDetails.kt -------------------------------------------------------------------------------- /hashing/src/jsMain/kotlin/com/github/burrunan/hashing/diff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/hashing/src/jsMain/kotlin/com/github/burrunan/hashing/diff.kt -------------------------------------------------------------------------------- /hashing/src/jsMain/kotlin/com/github/burrunan/hashing/hashFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/hashing/src/jsMain/kotlin/com/github/burrunan/hashing/hashFiles.kt -------------------------------------------------------------------------------- /layered-cache/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/build.gradle.kts -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/GradleCacheAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/GradleCacheAction.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/Parameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/Parameters.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/ActionsTriggerExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/ActionsTriggerExtensions.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/Cache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CompositeCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/CompositeCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/DefaultCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/DefaultCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/GradleGeneratedJarsCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/GradleGeneratedJarsCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/LayeredCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/LayeredCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/MetadataFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/MetadataFile.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/dependenciesCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/dependenciesCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/localBuildCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/cache/localBuildCache.kt -------------------------------------------------------------------------------- /layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/github/StateExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsMain/kotlin/com/github/burrunan/gradle/github/StateExtensions.kt -------------------------------------------------------------------------------- /layered-cache/src/jsTest/kotlin/com/github/burrunan/gradle/CacheServerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsTest/kotlin/com/github/burrunan/gradle/CacheServerTest.kt -------------------------------------------------------------------------------- /layered-cache/src/jsTest/kotlin/com/github/burrunan/gradle/GlobTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/layered-cache/src/jsTest/kotlin/com/github/burrunan/gradle/GlobTest.kt -------------------------------------------------------------------------------- /layered-cache/src/jsTest/resources/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /test-library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/test-library/build.gradle.kts -------------------------------------------------------------------------------- /test-library/src/jsMain/kotlin/com/github/burrunan/test/testExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/test-library/src/jsMain/kotlin/com/github/burrunan/test/testExtensions.kt -------------------------------------------------------------------------------- /wrappers/actions-cache/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/actions-cache/src/jsMain/kotlin/actions/cache/CacheExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/src/jsMain/kotlin/actions/cache/CacheExtensions.kt -------------------------------------------------------------------------------- /wrappers/actions-cache/src/jsMain/kotlin/actions/cache/RestoreType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/src/jsMain/kotlin/actions/cache/RestoreType.kt -------------------------------------------------------------------------------- /wrappers/actions-cache/src/jsMain/kotlin/actions/cache/internal/CacheContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/src/jsMain/kotlin/actions/cache/internal/CacheContract.kt -------------------------------------------------------------------------------- /wrappers/actions-cache/src/jsMain/kotlin/actions/cache/internal/httpclient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/src/jsMain/kotlin/actions/cache/internal/httpclient.kt -------------------------------------------------------------------------------- /wrappers/actions-cache/src/jsMain/kotlin/actions/cache/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-cache/src/jsMain/kotlin/actions/cache/types.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionFailedException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionFailedException.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionStage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionStage.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionsEnvironment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ActionsEnvironment.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/LogLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/LogLevel.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/LoggingExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/LoggingExtensions.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ext/Group.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ext/Group.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ext/InputExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/core/ext/InputExtensions.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/exec/ExecExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/exec/ExecExtensions.kt -------------------------------------------------------------------------------- /wrappers/actions-toolkit/src/jsMain/kotlin/actions/glob/removeFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/actions-toolkit/src/jsMain/kotlin/actions/glob/removeFiles.kt -------------------------------------------------------------------------------- /wrappers/java-properties/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/java-properties/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/java-properties/src/jsMain/kotlin/javaproperties/index.module_java-properties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/java-properties/src/jsMain/kotlin/javaproperties/index.module_java-properties.kt -------------------------------------------------------------------------------- /wrappers/java-properties/src/jsMain/kotlin/javaproperties/parseString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/java-properties/src/jsMain/kotlin/javaproperties/parseString.kt -------------------------------------------------------------------------------- /wrappers/js/src/jsMain/kotlin/com/github/burrunan/formatBytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/js/src/jsMain/kotlin/com/github/burrunan/formatBytes.kt -------------------------------------------------------------------------------- /wrappers/js/src/jsMain/kotlin/com/github/burrunan/wrappers/js/SuspendExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/js/src/jsMain/kotlin/com/github/burrunan/wrappers/js/SuspendExtensions.kt -------------------------------------------------------------------------------- /wrappers/nodejs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/nodejs/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/nodejs/src/jsMain/kotlin/com/github/burrunan/wrappers/nodejs/FsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/nodejs/src/jsMain/kotlin/com/github/burrunan/wrappers/nodejs/FsExtensions.kt -------------------------------------------------------------------------------- /wrappers/nodejs/src/jsMain/kotlin/com/github/burrunan/wrappers/nodejs/StreamExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/nodejs/src/jsMain/kotlin/com/github/burrunan/wrappers/nodejs/StreamExtensions.kt -------------------------------------------------------------------------------- /wrappers/octokit-request-error/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-request-error/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/octokit-request-error/src/jsMain/kotlin/octokit/requesterror/index.module_@octokit_request-error.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-request-error/src/jsMain/kotlin/octokit/requesterror/index.module_@octokit_request-error.kt -------------------------------------------------------------------------------- /wrappers/octokit-request-error/src/jsMain/kotlin/octokit/requesterror/types.module_@octokit_request-error.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-request-error/src/jsMain/kotlin/octokit/requesterror/types.module_@octokit_request-error.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/AuthInterface.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/AuthInterface.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointDefaults.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointDefaults.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointInterface.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointInterface.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointOptions.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/EndpointOptions.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Fetch.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Fetch.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/GetResponseTypeFromEndpointMethod.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/GetResponseTypeFromEndpointMethod.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/OctokitResponse.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/OctokitResponse.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestError.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestError.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestHeaders.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestHeaders.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestInterface.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestInterface.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestOptions.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestOptions.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestParameters.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestParameters.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestRequestOptions.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/RequestRequestOptions.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/ResponseHeaders.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/ResponseHeaders.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Route.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Route.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Signal.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Signal.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/StrategyInterface.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/StrategyInterface.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Url.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/Url.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-types/src/jsMain/kotlin/octokit/types/VERSION.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-types/src/jsMain/kotlin/octokit/types/VERSION.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/build.gradle.kts -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/ActionsTrigger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/ActionsTrigger.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/ResponseHeaders.module_@octokit_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/ResponseHeaders.module_@octokit_types.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/event-payloads.EventPayloads.module_@octokit_webhooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/event-payloads.EventPayloads.module_@octokit_webhooks.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/get-webhook-payload-type-from-event.module_@octokit_webhooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/get-webhook-payload-type-from-event.module_@octokit_webhooks.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/index.module_@octokit_webhooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/index.module_@octokit_webhooks.kt -------------------------------------------------------------------------------- /wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/types.module_@octokit_webhooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrunan/gradle-cache-action/HEAD/wrappers/octokit-webhooks/src/jsMain/kotlin/octokit/webhooks/types.module_@octokit_webhooks.kt --------------------------------------------------------------------------------