{"id":18853413,"url":"https://github.com/zyactions/update-semver","last_synced_at":"2026-04-28T21:32:24.572Z","repository":{"id":64983459,"uuid":"579751080","full_name":"zyactions/update-semver","owner":"zyactions","description":"A GitHub Action to update floating version tag aliases.","archived":false,"fork":false,"pushed_at":"2023-11-14T14:41:24.000Z","size":23,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-22T14:39:38.374Z","etag":null,"topics":["continuous-integration","github-actions"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/zyactions.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-12-18T19:49:09.000Z","updated_at":"2025-03-28T22:18:39.000Z","dependencies_parsed_at":"2024-11-12T13:00:28.177Z","dependency_job_id":null,"html_url":"https://github.com/zyactions/update-semver","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.25,"last_synced_commit":"c9a9216ea7196808948ba819fa19abe4a246a711"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/zyactions/update-semver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyactions%2Fupdate-semver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyactions%2Fupdate-semver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyactions%2Fupdate-semver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyactions%2Fupdate-semver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zyactions","download_url":"https://codeload.github.com/zyactions/update-semver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyactions%2Fupdate-semver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32400861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: 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":["continuous-integration","github-actions"],"created_at":"2024-11-08T03:44:17.447Z","updated_at":"2026-04-28T21:32:24.554Z","avatar_url":"https://github.com/zyactions.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Update Semver\n\n![License: MIT][shield-license-mit]\n[![CI][shield-ci]][workflow-ci]\n[![Ubuntu][shield-platform-ubuntu]][job-runs-on]\n[![macOS][shield-platform-macos]][job-runs-on]\n[![Windows][shield-platform-windows]][job-runs-on]\n\nA GitHub Action to update floating version tag aliases.\n\n## Features\n\n- Updates floating major and minor version tag aliases for projects that follow the [semantic versioning scheme][semver].\n- Fast execution\n- Scales to large repositories\n- Supports all platforms (Linux, macOS, Windows)\n- Does not use external GitHub Actions dependencies\n\n## Usage\n\n### Update aliases based on the current `GITHUB_REF`\n\n```yaml\nsteps:\n  - name: Update Semver\n    uses: zyactions/update-semver@v1\n```\n\nFor example, if `GITHUB_REF` contains the value `refs/tags/v2.3.4`, the tag `v2` will be updated or created to refer to the same hash.\n\n### Update aliases based on a specific tag\n\n```yaml\nsteps:\n  - name: Update Semver\n    uses: zyactions/update-semver@v1\n    with:\n      tag: 'v2.3.4'\n```\n\n## Inputs\n\n### `tag`\n\nThe name of the target tag or the reference to be used to update the other tags.\n\nFor example:\n\n- `v2.3.4`\n- `tags/v2.3.4`\n- `refs/tags/v2.3.4`\n\nDefaults to `GITHUB_REF` if not specified.\n\n### `prefix`\n\nAn optional version prefix like e.g. `v` or `release-v`. Defaults to `v`. \n\nThis value is used when searching for existing major- and minor- version tags and as well during initial tag creation.\n\n### `update-minor`\n\nEnable this option to also update minor version tags. Defaults to `false`.\n\n### `ignore-prerelease`\n\nEnable this option to ignore prerelease versions. Defaults to `true`.\n\n## Outputs\n\nThis action does not have any outputs.\n\n## Dependencies\n\nThis action does use the following official GitHub Actions dependencies:\n\n- [actions/github-script][actions-github-script]\n\nInternal dependencies:\n\n- [semver-tool][semver-tool] (bundled)\n\n## Versioning\n\nVersions follow the [semantic versioning scheme][semver].\n\n## License\n\nUpdate Semver Action is licensed under the MIT license.\n\n[actions-github-script]: https://github.com/actions/github-script\n[job-runs-on]: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on\n[semver]: https://semver.org\n[semver-tool]: https://github.com/fsaintjacques/semver-tool\n[shield-license-mit]: https://img.shields.io/badge/License-MIT-blue.svg\n[shield-ci]: https://github.com/zyactions/update-semver/actions/workflows/ci.yml/badge.svg\n[shield-platform-ubuntu]: https://img.shields.io/badge/Ubuntu-E95420?logo=ubuntu\\\u0026logoColor=white\n[shield-platform-macos]: https://img.shields.io/badge/macOS-53C633?logo=apple\\\u0026logoColor=white\n[shield-platform-windows]: https://img.shields.io/badge/Windows-0078D6?logo=windows\\\u0026logoColor=white\n[workflow-ci]: https://github.com/zyactions/update-semver/actions/workflows/ci.yml\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyactions%2Fupdate-semver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzyactions%2Fupdate-semver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyactions%2Fupdate-semver/lists"}