├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── test.yml │ └── update-dist.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist ├── restore │ ├── index.js │ ├── index.js.map │ └── sourcemap-register.js └── save │ ├── index.js │ ├── index.js.map │ └── sourcemap-register.js ├── package.json ├── src ├── restore.ts └── save.ts ├── test ├── .mill-version ├── build.sc ├── cs ├── foo.sc ├── foo.sh ├── mill └── mill.bat └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.github/workflows/update-dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/restore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/restore/index.js -------------------------------------------------------------------------------- /dist/restore/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/restore/index.js.map -------------------------------------------------------------------------------- /dist/restore/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/restore/sourcemap-register.js -------------------------------------------------------------------------------- /dist/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/save/index.js -------------------------------------------------------------------------------- /dist/save/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/save/index.js.map -------------------------------------------------------------------------------- /dist/save/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/dist/save/sourcemap-register.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/package.json -------------------------------------------------------------------------------- /src/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/src/restore.ts -------------------------------------------------------------------------------- /src/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/src/save.ts -------------------------------------------------------------------------------- /test/.mill-version: -------------------------------------------------------------------------------- 1 | 0.12.10 2 | -------------------------------------------------------------------------------- /test/build.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/build.sc -------------------------------------------------------------------------------- /test/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/cs -------------------------------------------------------------------------------- /test/foo.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/foo.sc -------------------------------------------------------------------------------- /test/foo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/foo.sh -------------------------------------------------------------------------------- /test/mill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/mill -------------------------------------------------------------------------------- /test/mill.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/test/mill.bat -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coursier/cache-action/HEAD/tsconfig.json --------------------------------------------------------------------------------