github.com/nektos/act@v0.2.83/pkg/runner/testdata/uses-composite-check-for-input-shadowing/composite_action/action.yml (about)

     1  name: "Test Composite Action"
     2  description: "Test action uses composite"
     3  
     4  inputs:
     5    cache:
     6      default: true
     7  
     8  runs:
     9    using: "composite"
    10    steps:
    11    - uses: ./uses-composite-check-for-input-shadowing/action-with-pre-and-post
    12      with:
    13        step: step1
    14        cache: ${{ inputs.cache || 'none' }}
    15    - uses: ./uses-composite-check-for-input-shadowing/action-with-pre-and-post
    16      with:
    17        step: step2
    18        cache: ${{ inputs.cache || 'none' }}