What happened
Using mittwald/deploy-container-action@v1 fails with:
Unable to resolve action `mittwald/deploy-container-action@v1`, unable to find version `v1`
Steps to reproduce
-
In a GitHub Actions workflow, add:
- uses: mittwald/deploy-container-action@v1
-
Run the workflow.
Expected
@v1 resolves to the latest v1.x release.
Actual
Resolution fails because the repository has patch tags like v1.0.x but no movable v1 tag or branch.
Workarounds
Proposed fix
Create and maintain a moving major tag v1 that points to the latest v1.x release. This matches common Actions versioning practice and lets users safely depend on the major line.
What happened
Using
mittwald/deploy-container-action@v1fails with:Steps to reproduce
In a GitHub Actions workflow, add:
Run the workflow.
Expected
@v1resolves to the latestv1.xrelease.Actual
Resolution fails because the repository has patch tags like
v1.0.xbut no movablev1tag or branch.Workarounds
Pin to an explicit release:
Or pin to a commit SHA.
Proposed fix
Create and maintain a moving major tag
v1that points to the latestv1.xrelease. This matches common Actions versioning practice and lets users safely depend on the major line.