2023-11-15 08:45:45 +00:00
|
|
|
---
|
|
|
|
name: Security scanning
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Run weekly on every Monday
|
|
|
|
- cron: '0 0 * * 1'
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
branches:
|
|
|
|
- release-*
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
security:
|
|
|
|
if: github.repository == 'ceph/ceph-csi'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2024-09-18 09:19:02 +00:00
|
|
|
# yamllint disable-line rule:line-length
|
2024-10-28 20:18:00 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2023-11-15 08:45:45 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: run Snyk to check for code vulnerabilities
|
2024-09-18 09:19:02 +00:00
|
|
|
# yamllint disable-line rule:line-length
|
|
|
|
uses: snyk/actions/golang@cdb760004ba9ea4d525f2e043745dfe85bb9077e # master
|
2023-11-15 08:45:45 +00:00
|
|
|
env:
|
2024-08-22 15:42:55 +00:00
|
|
|
SNYK_TOKEN: ${{ secrets.SYNK_TOKEN }}
|