Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/reusable-CI-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,25 @@ jobs:
symfony-max: ${{ steps.fetch-symfony-versions.outputs.max }}
symfony-next: ${{ steps.fetch-symfony-versions.outputs.next }}
steps:
- name: Fetch supported versions file
id: fetch-file
uses: yoanm/gha-supported-versions-parser/github-downloader@v1
with:
file-path: .github/workflows/supported-versions.json

- name: Fetch PHP supported versions
id: fetch-php-versions
uses: yoanm/gha-supported-versions-parser@feature/init
uses: yoanm/gha-supported-versions-parser@v1
with:
path: ${{ steps.fetch-file.outputs.path }}
dependency: php
path: .github/workflows/supported-versions.json

- name: Fetch Symfony supported versions
id: fetch-symfony-versions
uses: yoanm/gha-supported-versions-parser@feature/init
uses: yoanm/gha-supported-versions-parser@v1
with:
path: ${{ steps.fetch-file.outputs.path }}
dependency: symfony
path: .github/workflows/supported-versions.json

tests:
name: ${{ matrix.job-name }}
Expand Down