Major version ref is outdated #304
Description
Background
In order to reduce the burden of workflow dependency management for users, it is standard practice for action maintainers to provide a major version ref:
Such a major version ref is provided for this action:
https://github.com/github/setup-licensed/releases/tag/v1
Problem
The maintainers have neglected the critical task of moving the major version ref tag at each release. The v1
tag is still at d6b3a6f (v1.1.4
), which means those who use this ref in their workflows are stuck using the outdated version 1.1.4 of the action instead of version 1.3.1 as expected.
Resolution
Please move the v1
tag to v1.3.1
:
git tag --force v1 v1.3.1 && git push --force https://github.com/github/setup-licensed v1
Additional context
Since this update was missed for three releases in a row, it seems likely that it will be forgotten again in future releases. In order to avoid that, I recommend either producing a formal release procedure document for the maintainers to follow, or even better setting up an automated system.