fix(deps): replace step-security/retry and update action pins (#468)

* fix(deps): replace step-security/retry with nick-fields/retry

* chore(deps): update github action sha pins via pinact

* refactor: remove common-retry references from tests and validators

* chore: simplify description fallback and update action count

* docs: remove hardcoded test counts from memory and docs

Replace exact "769 tests" references with qualitative language
so these files don't go stale as test count grows.
This commit is contained in:
2026-03-02 02:31:26 +02:00
committed by GitHub
parent d919327c7e
commit bd59245cd7
18 changed files with 29 additions and 127 deletions

View File

@@ -337,7 +337,7 @@ class ValidationCore:
"""
if not value: # Empty values are generally allowed, except for specific cases
# Some inputs should not be empty even if they're optional
if action_name == "php-composer" and input_name in ["composer-version"]:
if action_name == "php-composer" and input_name == "composer-version":
return False, f"Empty {input_name} is not allowed"
return None, ""
@@ -552,7 +552,7 @@ class ActionFileParser:
def _get_description_property(input_data: dict) -> str:
"""Get the description property."""
description = input_data.get("description", "")
return description if description else "no-description"
return description or "no-description"
@staticmethod
def _get_all_optional_property(inputs: dict) -> str: