{"id":26493764,"url":"https://github.com/gacts/install-geth-tools","last_synced_at":"2025-03-20T09:57:12.333Z","repository":{"id":65159857,"uuid":"508440003","full_name":"gacts/install-geth-tools","owner":"gacts","description":"🚀 Installs Geth (Go Ethereum) and tools (abigen, bootnode, clef, evm, rlpdump) into your actions workflow","archived":false,"fork":false,"pushed_at":"2025-03-01T12:27:26.000Z","size":5245,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-01T13:27:53.926Z","etag":null,"topics":["abigen","actions","bootnode","clef","ethereum","evm","geth","github-actions","puppeth","rlpdump"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/install-geth-go-ethereum-and-tools","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}},"created_at":"2022-06-28T20:08:17.000Z","updated_at":"2025-03-01T12:27:30.000Z","dependencies_parsed_at":"2023-02-17T05:30:52.156Z","dependency_job_id":"9c8f88bb-3074-44d0-a776-339a89531059","html_url":"https://github.com/gacts/install-geth-tools","commit_stats":{"total_commits":38,"total_committers":2,"mean_commits":19.0,"dds":0.1842105263157895,"last_synced_commit":"6620e217c02eb2e1cd31ef652de328cd969185f1"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-geth-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-geth-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-geth-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-geth-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gacts","download_url":"https://codeload.github.com/gacts/install-geth-tools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244591484,"owners_count":20477709,"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","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":["abigen","actions","bootnode","clef","ethereum","evm","geth","github-actions","puppeth","rlpdump"],"created_at":"2025-03-20T09:57:11.881Z","updated_at":"2025-03-20T09:57:12.323Z","avatar_url":"https://github.com/gacts.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/7326800/176276668-106932ec-bde4-4a91-8390-c826bb9d5075.png\" alt=\"Logo\" width=\"90\" /\u003e\n\u003c/p\u003e\n\n# Install [Geth][geth] Action\n\n![Release version][badge_release_version]\n[![Build Status][badge_build]][link_build]\n[![License][badge_license]][link_license]\n\nThis action installs [Geth][geth] and its tools (`abigen`, `bootnode`, `clef`, `evm`, `rlpdump`) into your workflow. It\ncan be run on **Linux** (`ubuntu-latest`), **macOS** (`macos-latest`), or **Windows** (`windows-latest`).\n\n- 🚀 Geth downloads page: \u003chttps://geth.ethereum.org/downloads/\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-geth-tools:\n    runs-on: ubuntu-latest # or macos-latest, windows-latest\n    steps:\n      - uses: gacts/install-geth-tools@v1\n        #with:\n        #  version: 1.10.19 # `latest` by default, but you can set a specific version to install, e.g.: `1.10.19`\n\n      - run: geth version\n      - run: abigen --version\n      - run: bootnode -h\n      - run: clef --version\n      - run: evm --version\n      - run: rlpdump -h\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    | Version to install                                                   |\n| `github-token` | `string` | `${{ github.token }}` |    no    | GitHub token (for requesting the latest version info \u0026 release hash) |\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-geth-tools/tests.yml?branch=master\u0026maxAge=30\n[badge_release_version]:https://img.shields.io/github/release/gacts/install-geth-tools.svg?maxAge=30\n[badge_license]:https://img.shields.io/github/license/gacts/install-geth-tools.svg?longCache=true\n[badge_release_date]:https://img.shields.io/github/release-date/gacts/install-geth-tools.svg?maxAge=180\n[badge_commits_since_release]:https://img.shields.io/github/commits-since/gacts/install-geth-tools/latest.svg?maxAge=45\n[badge_issues]:https://img.shields.io/github/issues/gacts/install-geth-tools.svg?maxAge=45\n[badge_pulls]:https://img.shields.io/github/issues-pr/gacts/install-geth-tools.svg?maxAge=45\n\n[link_build]:https://github.com/gacts/install-geth-tools/actions\n[link_license]:https://github.com/gacts/install-geth-tools/blob/master/LICENSE\n[link_issues]:https://github.com/gacts/install-geth-tools/issues\n[link_create_issue]:https://github.com/gacts/install-geth-tools/issues/new\n[link_pulls]:https://github.com/gacts/install-geth-tools/pulls\n\n[geth]:https://geth.ethereum.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-geth-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgacts%2Finstall-geth-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-geth-tools/lists"}