├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── common.test.ts └── save.test.ts ├── action.yml ├── dist ├── restore │ └── index.js └── save │ └── index.js ├── jest.config.js ├── package.json ├── src ├── common.ts ├── restore.ts └── save.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/__tests__/common.test.ts -------------------------------------------------------------------------------- /__tests__/save.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/__tests__/save.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/restore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/dist/restore/index.js -------------------------------------------------------------------------------- /dist/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/dist/save/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/package.json -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/src/restore.ts -------------------------------------------------------------------------------- /src/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/src/save.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hendrikmuhs/ccache-action/HEAD/tsconfig.json --------------------------------------------------------------------------------