-
Notifications
You must be signed in to change notification settings - Fork 11
36 lines (30 loc) · 922 Bytes
/
Copy pathmacaron-analysis.yaml
File metadata and controls
36 lines (30 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Run Macaron's policies and generate Verification Summary Attestation reports.
# See https://github.com/oracle/macaron
name: Run Macaron to check supply chain security issues
on:
push:
branches:
- main
paths:
- .github/workflows/**
pull_request:
paths:
- .github/workflows/**
permissions:
contents: read
jobs:
run_macaron:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
# Check the GitHub Actions workflows in the repository for vulnerabilities.
- name: Run Macaron action
uses: oracle/macaron@794eec32782979f577efb5ff71d585f683a3550f # v0.25.0
with:
repo_path: ./
policy_file: check-github-actions
policy_purl: pkg:github.com/jenstroeger/python-package-template@.*
reports_retention_days: 90