github.com/nektos/act@v0.2.63/pkg/runner/testdata/path-handling/action.yml (about)

     1  name: output action
     2  description: output action
     3  
     4  inputs:
     5    input:
     6      description: some input
     7      required: false
     8  
     9  outputs:
    10    job-output:
    11      description: some output
    12      value: ${{ steps.gen-out.outputs.step-output }}
    13  
    14  runs:
    15    using: composite
    16    steps:
    17      - name: run step
    18        id: gen-out
    19        run: |
    20          echo "::set-output name=step-output::"
    21        shell: bash