mirror of
https://github.com/ivuorinen/actions.git
synced 2026-02-03 22:42:43 +00:00
docs: deprecate language-version-detect action
Mark language-version-detect as deprecated now that all internal usages have been inlined. Inline version detection provides better performance by eliminating action initialization overhead. Changes: - Add DEPRECATED notice to action.yml description and metadata - Add deprecation warning banner to README with migration guidance - Reference existing actions with inline detection patterns Users should migrate to inlining version detection logic directly into their actions rather than using this composite action. See pr-lint, php-laravel-phpunit, python-lint-fix, and go-build for examples. This action will be removed in a future release.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
### Description
|
||||
|
||||
Detects language version from project configuration files with support for PHP, Python, Go, and .NET.
|
||||
DEPRECATED: This action is deprecated. Inline version detection directly in your actions instead. Detects language version from project configuration files with support for PHP, Python, Go, and .NET.
|
||||
|
||||
### Inputs
|
||||
|
||||
|
||||
@@ -3,8 +3,9 @@
|
||||
# - contents: read # Required for reading version files
|
||||
---
|
||||
name: Language Version Detect
|
||||
description: 'Detects language version from project configuration files with support for PHP, Python, Go, and .NET.'
|
||||
description: 'DEPRECATED: This action is deprecated. Inline version detection directly in your actions instead. Detects language version from project configuration files with support for PHP, Python, Go, and .NET.'
|
||||
author: 'Ismo Vuorinen'
|
||||
deprecated: true
|
||||
|
||||
branding:
|
||||
icon: code
|
||||
|
||||
@@ -11,7 +11,8 @@
|
||||
|
||||
schema_version: '1.0'
|
||||
action: language-version-detect
|
||||
description: Detects language version from project configuration files with support for PHP, Python, Go, and .NET.
|
||||
description: 'DEPRECATED: This action is deprecated. Inline version detection directly in your actions instead. Detects language
|
||||
version from project configuration files with support for PHP, Python, Go, and .NET.'
|
||||
generator_version: 1.0.0
|
||||
required_inputs:
|
||||
- language
|
||||
|
||||
Reference in New Issue
Block a user