(DEMO) HeroDevs EOL Scan With Docker Image #13
Workflow file for this run
This file contains hidden or 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: (DEMO) HeroDevs EOL Scan With Docker Image | |
| on: | |
| workflow_dispatch: {} | |
| env: | |
| TRACKING_OPT_OUT: 'true' | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| environment: demo | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Run EOL Scan | |
| run: | | |
| docker run --rm \ | |
| -v $GITHUB_WORKSPACE:/app:ro \ | |
| -v ${{ runner.temp }}:/output \ | |
| -w /app \ | |
| ghcr.io/herodevs/eol-scan --output /output/herodevs.report.json | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: my-eol-report | |
| path: ${{ runner.temp }}/herodevs.report.json |