-
Notifications
You must be signed in to change notification settings - Fork 34
43 lines (37 loc) · 1.22 KB
/
macaron-analysis.yaml
File metadata and controls
43 lines (37 loc) · 1.22 KB
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
37
38
39
40
41
42
43
# Copyright (c) 2026 - 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.
# 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/**
schedule:
- cron: 20 15 * * 3
permissions:
contents: read
jobs:
run_macaron:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false
# Check the GitHub Actions workflows in the repository for vulnerabilities.
# Note: adjust the policy_purl to refer to your repository URL.
- name: Run Macaron action
id: run_macaron
uses: oracle/macaron@4ddb55e3c9ef2c77b548be55c557078c4476fd9c # v0.24.0
with:
repo_path: ./
policy_file: check-github-actions
policy_purl: pkg:github.com/oracle/macaron@.*
reports_retention_days: 90