Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/ohrisk-smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Ohrisk Action Smoke

on:
push:
branches:
- task/ohrisk-action-smoke
workflow_dispatch:

permissions: {}

jobs:
ohrisk:
name: Run Ohrisk action
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v7
with:
persist-credentials: false

- name: Scan license risk
uses: 0disoft/ohrisk@main
with:
command: scan
format: html
output: reports/ohrisk.html
prod: "true"
fail-on: ""

- name: Upload report
uses: actions/upload-artifact@v7
with:
name: ohrisk-html
path: reports/ohrisk.html