Skip to content

Commit 2157265

Browse files
committed
fix:errors
1 parent fb9750c commit 2157265

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gha_cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def compare_versions(v1: str, v2: str) -> int:
4545

4646

4747
class GithubActionsTools(object):
48-
_wf_cache: dict[str, dict[str, Union[Workflow, Any]]] = dict() # repo_name -> [path -> workflow/yaml]
48+
_wf_cache: dict[str, dict[str, Any]] = dict() # repo_name -> [path -> workflow/yaml]
4949
actions_latest_release: dict[str, str] = dict() # action_name@current_release -> latest_release_tag
5050

5151
def __init__(self, github_token: str):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ github-actions-cli = "gha_cli.cli:cli"
88

99
[tool.poetry]
1010
name = "github-actions-cli"
11-
version = "1.1.4"
11+
version = "1.1.5"
1212
description = "GitHub Actions CLI - allows updating workflows, etc."
1313
readme = "README.md"
1414
keywords = ["GitHub Actions", "CLI"]

0 commit comments

Comments
 (0)