Composer manuel outdated check #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Composer manuel outdated check" | |
on: | |
workflow_dispatch: | |
inputs: | |
ignore-list: | |
description: 'Ignore configuration for composer outdated check' | |
required: true | |
default: 'none' | |
type: string | |
version-type: | |
description: 'Type of version to check M for major, m for minor, p for patch' | |
required: true | |
default: 'M' | |
type: choice | |
options: | |
- M | |
- m | |
- p | |
permissions: | |
contents: read | |
jobs: | |
composer-checks: | |
uses: pimcore/workflows-collection-public/.github/workflows/reusable-composer-checks.yaml@main | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { php-version: 8.3, branch: 2025.x } | |
with: | |
php-version: ${{ matrix.php-version }} | |
branch: ${{ matrix.branch }} | |
ignore-list: ${{ inputs.ignore-list }} | |
platform-repo: true | |
private-repo: true | |
version-type: "-${{ inputs.version-type }}" | |
secrets: inherit |