OSPS Baseline Scanner #5
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: OSPS Baseline Scanner | |
| on: | |
| schedule: | |
| # Run weekly on Mondays at 9 AM UTC | |
| - cron: "0 9 * * 1" | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| osps-assessment: | |
| runs-on: ubuntu-latest | |
| name: Baseline Scan | |
| permissions: | |
| contents: read | |
| security-events: write # Required for SARIF upload | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Run Baseline Action | |
| uses: revanite-io/osps-baseline-action@ffcef1f33b6ee5b916c7e357e4ae1481b99b46b6 # v1.0.0 | |
| with: | |
| owner: ${{ github.repository_owner }} | |
| repo: ${{ github.event.repository.name }} | |
| token: ${{ secrets.GH_AUTH_TOKEN }} | |
| catalog: "osps-baseline" | |
| upload-sarif: "true" | |
| - name: Upload Assessment Results | |
| if: always() | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| with: | |
| name: osps-assessment-results-${{ github.run_number }} | |
| path: evaluation_results/ | |
| retention-days: 1 |