{"id":26493786,"url":"https://github.com/gacts/install-mmock","last_synced_at":"2025-08-11T14:49:38.801Z","repository":{"id":39708183,"uuid":"492210754","full_name":"gacts/install-mmock","owner":"gacts","description":"🚀 Installs mmock binary file into your actions workflow","archived":false,"fork":false,"pushed_at":"2025-07-09T11:46:43.000Z","size":8726,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-10T00:22:33.162Z","etag":null,"topics":["actions","github-actions","mmock","mocking"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/install-mmock-cross-platform","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gacts.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-05-14T12:31:48.000Z","updated_at":"2025-07-09T11:45:53.000Z","dependencies_parsed_at":"2023-02-17T03:31:23.294Z","dependency_job_id":"ff2bd2c6-8e9f-4452-aeba-cf805a47d9b6","html_url":"https://github.com/gacts/install-mmock","commit_stats":{"total_commits":47,"total_committers":2,"mean_commits":23.5,"dds":"0.19148936170212771","last_synced_commit":"ac3b25641a424a5b22383c8916e209e56d8e5f71"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/gacts/install-mmock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-mmock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-mmock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-mmock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-mmock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gacts","download_url":"https://codeload.github.com/gacts/install-mmock/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-mmock/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269906359,"owners_count":24494329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions","mmock","mocking"],"created_at":"2025-03-20T09:57:15.851Z","updated_at":"2025-08-11T14:49:38.763Z","avatar_url":"https://github.com/gacts.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/jmartin82/mmock/raw/master/docs/logo.png\" alt=\"Logo\" width=\"450\" /\u003e\n\u003c/p\u003e\n\n# Install [MMock][mmock] action\n\n![Release version][badge_release_version]\n[![Build Status][badge_build]][link_build]\n[![License][badge_license]][link_license]\n\n\u003e MMock is a testing and fast prototyping tool for developers - easy and fast HTTP mock server.\n\nThis action installs [MMock][mmock] as a binary file into your workflow. It can be run on **Linux** (`ubuntu-latest`),\n**macOS** (`macos-latest`), or **Windows** (`windows-latest`).\n\n- 🚀 MMock releases page: \u003chttps://github.com/jmartin82/mmock/releases\u003e\n\nAdditionally, this action uses the GitHub **caching mechanism** to speed up your workflow execution time!\n\n## Usage\n\n```yaml\njobs:\n  install-mmock:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: gacts/install-mmock@v1 # Action page: \u003chttps://github.com/gacts/install-mmock\u003e\n        #with:\n        #  version: 3.0.0 # `latest` by default, but you can set a specific version to install\n\n      - run: mmock -h # any mmock command can be executed\n```\n\n## Customizing\n\n### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name           |   Type   |        Default        | Required | Description                                                 |\n|----------------|:--------:|:---------------------:|:--------:|-------------------------------------------------------------|\n| `version`      | `string` |       `latest`        |    no    | MMock version to install                                    |\n| `github-token` | `string` | `${{ github.token }}` |    no    | GitHub token (for requesting the latest MMock version info) |\n\n### Outputs\n\n| Name        |   Type   | Description                   |\n|-------------|:--------:|-------------------------------|\n| `mmock-bin` | `string` | Path to the MMock binary file |\n\n## Releasing\n\nTo release a new version:\n\n- Build the action distribution (`make build` or `npm run build`).\n- Commit and push changes (including `dist` directory changes - this is important) to the `master|main` branch.\n- Publish the new release using the repo releases page (the git tag should follow the `vX.Y.Z` format).\n\nMajor and minor git tags (`v1` and `v1.2` if you publish a `v1.2.Z` release) will be updated automatically.\n\n\u003e [!TIP]\n\u003e Use [Dependabot](https://bit.ly/45zwLL1) to keep this action updated in your repository.\n\n## Support\n\n[![Issues][badge_issues]][link_issues]\n[![Pull Requests][badge_pulls]][link_pulls]\n\nIf you find any errors in the action, please [create an issue][link_create_issue] in this repository.\n\n## License\n\nThis is open-source software licensed under the [MIT License][link_license].\n\n[badge_build]:https://img.shields.io/github/actions/workflow/status/gacts/install-mmock/tests.yml?branch=master\u0026maxAge=30\n[badge_release_version]:https://img.shields.io/github/release/gacts/install-mmock.svg?maxAge=30\n[badge_license]:https://img.shields.io/github/license/gacts/install-mmock.svg?longCache=true\n[badge_release_date]:https://img.shields.io/github/release-date/gacts/install-mmock.svg?maxAge=180\n[badge_commits_since_release]:https://img.shields.io/github/commits-since/gacts/install-mmock/latest.svg?maxAge=45\n[badge_issues]:https://img.shields.io/github/issues/gacts/install-mmock.svg?maxAge=45\n[badge_pulls]:https://img.shields.io/github/issues-pr/gacts/install-mmock.svg?maxAge=45\n\n[link_build]:https://github.com/gacts/install-mmock/actions\n[link_license]:https://github.com/gacts/install-mmock/blob/master/LICENSE\n[link_issues]:https://github.com/gacts/install-mmock/issues\n[link_create_issue]:https://github.com/gacts/install-mmock/issues/new\n[link_pulls]:https://github.com/gacts/install-mmock/pulls\n\n[mmock]:https://github.com/jmartin82/mmock\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-mmock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgacts%2Finstall-mmock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-mmock/lists"}