github.com/nektos/act@v0.2.63/pkg/runner/testdata/do-not-leak-step-env-in-composite/push.yml (about) 1 on: push 2 jobs: 3 _: 4 runs-on: ubuntu-latest 5 steps: 6 - run: | 7 runs: 8 using: composite 9 steps: 10 - run: exit 1 11 shell: bash 12 if: env.LEAK_ENV != 'val' 13 shell: cp {0} action.yml 14 - uses: ./ 15 env: 16 LEAK_ENV: val 17 - run: exit 1 18 if: env.LEAK_ENV == 'val'