{"id":17817116,"url":"https://github.com/030/gomod-go-version-updater-action","last_synced_at":"2026-01-21T14:02:18.444Z","repository":{"id":226745690,"uuid":"769503417","full_name":"030/gomod-go-version-updater-action","owner":"030","description":"Update the go version in a go.mod file.","archived":false,"fork":false,"pushed_at":"2025-10-31T20:38:00.000Z","size":121,"stargazers_count":4,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-31T22:14:38.254Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/030.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":"2024-03-09T09:06:09.000Z","updated_at":"2025-10-31T20:38:03.000Z","dependencies_parsed_at":"2024-05-18T17:43:27.471Z","dependency_job_id":"19eb590f-7731-4f49-8782-619655367811","html_url":"https://github.com/030/gomod-go-version-updater-action","commit_stats":null,"previous_names":["030/gomod-go-version-updater-action"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/030/gomod-go-version-updater-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/030%2Fgomod-go-version-updater-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/030%2Fgomod-go-version-updater-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/030%2Fgomod-go-version-updater-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/030%2Fgomod-go-version-updater-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/030","download_url":"https://codeload.github.com/030/gomod-go-version-updater-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/030%2Fgomod-go-version-updater-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28634786,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"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":[],"created_at":"2024-10-27T16:40:47.240Z","updated_at":"2026-01-21T14:02:18.428Z","avatar_url":"https://github.com/030.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gomod-go-version-updater-action\n\nThe rationale for this action is that\n[Dependabot cannot](https://github.com/dependabot/dependabot-core/issues/9057)\nupdate the go version that is defined in a `go.mod` file.\n\n## Usage\n\n1. To use this action, ensure that:\n   `Allow GitHub Actions to create and approve pull requests` option has been\n   enabled in the action settings. In order to find this, attach:\n   `/settings/actions` to the project URL, i.e.:\n   `https://github.com/\u003cowner\u003e/\u003cproject-name\u003e/settings/actions`.\n1. Once the setting has been enabled, create a\n   `~/.github/workflows/gomod-go-version-updater.yml` file with the following\n   content:\n   ```yml\n   ---\n   name: gomod-go-version-updater-action\n   \"on\":\n     schedule:\n       - cron: \"42 6 * * *\"\n   permissions:\n     contents: write\n     pull-requests: write\n   jobs:\n     gomod-go-version-updater-action:\n       runs-on: ubuntu-22.04\n       steps:\n         - uses: 030/gomod-go-version-updater-action@v0.1.6\n   ```\n1. To ensure that an action is triggered for testing the Golang version update,\n   add a `pull_request_review` trigger. This will cause a specific Workflow\n   Action to run whenever someone submits a review for the pull request created\n   by the **gomod-go-version-updater-action**:\n   ```yml\n   \"on\":\n     # required by gomod-go-version-updater to trigger this action once pr has\n     # been reviewed\n     pull_request_review:\n       types: [submitted]\n   ```\n1. Optional: if private go modules have to be downloaded:\n   ```yml\n   - uses: 030/gomod-go-version-updater-action@v0.1.6\n     with:\n       github-token-for-downloading-private-go-modules: ${{ secrets.GITHUB_TOKEN }}\n   ```\n1. Optional: set the log level to `DEBUG`, `WARNING`, `ERROR` or `CRITICAL`\n   (default: INFO):\n   ```yml\n   - uses: 030/gomod-go-version-updater-action@v0.1.6\n     with:\n       gomod-go-version-updater-action-log-level: DEBUG\n   ```\n1. Optional: add an extra label to the PR that will be created:\n   ```yml\n   - uses: 030/gomod-go-version-updater-action@v0.1.6\n     with:\n       extra-pr-label: something\n   ```\n\n## Development\n\nIf you want to develop on this action, you'll probably want to use a virtual environment. Feel free to arrange that in any way you want, but it could be as simple as running\n\n```python\npython3 -m venv .venv\n```\n\nDon't forget to activate the virtual environment next:\n\n```bash\nsource .venv/bin/activate\n```\n\nTo install the dependencies to work on the project, you can use `pip`:\n\n```bash\npip install '.[dev]'\n```\n\nTo run the test suite run:\n```bash\npytest\n```\n\n## Test\n\nBesides the test suite we run with `pytest` (see above) we run a more extensive set as part of quality control. See the run steps that are defined in\n[this GitHub Workflow](.github/workflows/python.yml) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F030%2Fgomod-go-version-updater-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F030%2Fgomod-go-version-updater-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F030%2Fgomod-go-version-updater-action/lists"}