mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 15:38:06 -05:00
21 lines
483 B
YAML
21 lines
483 B
YAML
name: Export Security Report to CSV
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
security-events: read
|
|
|
|
on: workflow_dispatch
|
|
jobs:
|
|
data_gathering:
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
|
steps:
|
|
- name: CSV export
|
|
uses: advanced-security/ghas-to-csv@v2
|
|
- name: Upload CSV
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ghas-data
|
|
path: ${{ github.workspace }}/*.csv
|
|
if-no-files-found: error
|