{"id":31642398,"url":"https://github.com/mehermvr/bump_fetchcontent","last_synced_at":"2026-04-21T09:32:48.561Z","repository":{"id":317880815,"uuid":"1069172631","full_name":"mehermvr/bump_fetchcontent","owner":"mehermvr","description":"Github action to bump dependency versions when using CMake FetchContent","archived":false,"fork":false,"pushed_at":"2025-10-03T16:26:12.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T20:47:56.521Z","etag":null,"topics":["action","ci","cmake","fetchcontent","github-actions"],"latest_commit_sha":null,"homepage":"","language":"Python","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/mehermvr.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-03T14:11:07.000Z","updated_at":"2025-10-03T16:47:38.000Z","dependencies_parsed_at":"2025-10-03T17:49:00.896Z","dependency_job_id":"110aaa69-b2be-4174-ae7a-bca7dd832e4d","html_url":"https://github.com/mehermvr/bump_fetchcontent","commit_stats":null,"previous_names":["mehermvr/bump_fetchcontent"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mehermvr/bump_fetchcontent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehermvr%2Fbump_fetchcontent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehermvr%2Fbump_fetchcontent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehermvr%2Fbump_fetchcontent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehermvr%2Fbump_fetchcontent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mehermvr","download_url":"https://codeload.github.com/mehermvr/bump_fetchcontent/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehermvr%2Fbump_fetchcontent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32085488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T06:27:27.065Z","status":"ssl_error","status_checked_at":"2026-04-21T06:27:21.250Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["action","ci","cmake","fetchcontent","github-actions"],"created_at":"2025-10-07T03:59:00.987Z","updated_at":"2026-04-21T09:32:48.553Z","avatar_url":"https://github.com/mehermvr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bump_fetchcontent\n\nGitHub Action that updates CMake FetchContent based dependencies.\n\nSpecifically, it does the following:\n- looks through all `CMakeLists.txt` or `*.cmake` files in your repo\n- searches for any [`FetchContent_Declare`](https://cmake.org/cmake/help/latest/module/FetchContent.html#command:fetchcontent_declare) calls\n- checks if they use the URL style with a file ending in `.tar.gz`\n- updates the url to a newer version if any\n\nSo it looks for dependencies like this:\n```cmake\nFetchContent_Declare(\n  someLib\n  URL https://github.com/user/repo/archive/refs/tags/v1.2.3.tar.gz\n)\n```\n* Note: Only github and gitlab links are supported for now.\n\nOf course, the URL style with a `.tar.gz` link is a very specific use case.\nBut that suffices for my own purposes for now.\nContributions welcome to support more cases.\n\n## Example workflow\n\n```yaml\nname: Bump FetchContent\non:\n  schedule:\n    - cron: '0 0 1 * *' # run monthly on the 1st day at midnight UTC\n  workflow_dispatch: # allows manual trigger\njobs:\n  bump-fetchcontent:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: mehermvr/bump_fetchcontent@v0.0.1\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          ignore_prereleases: 'true'  # default behavior\n```\n\n## Inputs\n- `github_token` (required): Should be available by default. Needed for making a PR if required.\n- `ignore_prereleases` (optional): Skips pre-release versions like alpha, rc, or beta. Default is \"true\".\n\n## Dry run\n\nYou can dry run the changes on your repo by using the file `dry_run.py`.\nIt takes a single argument which is your repository git url.\nIt'll clone the repo into a temp folder and check for version updates if any.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehermvr%2Fbump_fetchcontent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmehermvr%2Fbump_fetchcontent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehermvr%2Fbump_fetchcontent/lists"}