CVE-2025-31479
Description
canonical/get-workflow-version-action is a GitHub composite action to get commit SHA that GitHub Actions reusable workflow was called with. Prior to 1.0.1, if the get-workflow-version-action step fails, the exception output may include the GITHUB_TOKEN. If the full token is included in the exception output, GitHub will automatically redact the secret from the GitHub Actions logs. However, the token may be truncated—causing part of the GITHUB_TOKEN to be displayed in plaintext in the GitHub Actions logs. Anyone with read access to the GitHub repository can view GitHub Actions logs. For public repositories, anyone can view the GitHub Actions logs. The opportunity to exploit this vulnerability is limited—the GITHUB_TOKEN is automatically revoked when the job completes. However, there is an opportunity for an attack in the time between the GITHUB_TOKEN being displayed in the logs and the completion of the job. Users using the github-token input are impacted. This vulnerability is fixed in 1.0.1.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
canonical/get-workflow-version-actionGitHub Actions | < 1.0.1 | 1.0.1 |
Patches
188281a62e96eRemove GitHub token from exception output
1 file changed · +2 −1
get_workflow_version/main.py+2 −1 modified@@ -7,7 +7,8 @@ import typer from typing_extensions import Annotated -app = typer.Typer() +# Do not show locals to avoid displaying `GH_TOKEN` +app = typer.Typer(pretty_exceptions_show_locals=False) @dataclasses.dataclass(frozen=True)
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
5- github.com/advisories/GHSA-26wh-cc3r-w6pjghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2025-31479ghsaADVISORY
- github.com/canonical/get-workflow-version-action/commit/88281a62e96e1c0ef4df30352ae0668a9f3e3369nvdWEB
- github.com/canonical/get-workflow-version-action/issues/2nvdWEB
- github.com/canonical/get-workflow-version-action/security/advisories/GHSA-26wh-cc3r-w6pjnvdWEB
News mentions
0No linked articles in our index yet.