Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Use Macaron as a GitHub Action
To use the Macaron GitHub Action, add the following step to your workflow (adjust the version as needed). In this example, we use an example policy. For detailed instructions and a comprehensive list of available options, please refer to the [Macaron GitHub Action documentation](https://oracle.github.io/macaron/pages/macaron_action.html).

```yaml
- uses: oracle/macaron@v0.21.0
- uses: oracle/macaron@v0.22.0
with:
repo_path: 'https://github.com/example/project'
policy_file: check-github-actions
Expand Down
9 changes: 6 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Copyright (c) 2025 - 2025, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2025 - 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/.

name: Macaron Security Analysis
description: Run Macaron to analyze supply chain security
name: Macaron Security Analysis Action
description: Run Macaron to analyze artifacts for supply chain security
author: Oracle - github.com/oracle/macaron
branding:
icon: shield
color: blue
# This composite GitHub Action wraps the Macaron tool. It exposes inputs for analysis options to shell scripts under `scripts/actions/` for readability.

inputs:
Expand Down
6 changes: 3 additions & 3 deletions docs/source/pages/macaron_action.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ When using this action you can reference the action in your workflow. Example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Run Macaron Security Analysis
uses: oracle/macaron@v0.21.0
- name: Run Macaron Security Analysis Action
uses: oracle/macaron@v0.22.0
with:
repo_path: 'https://github.com/example/project'
policy_file: check-github-actions
Expand All @@ -37,7 +37,7 @@ directory containing ``macaron.db``:
.. code-block:: yaml

- name: Verify policy
uses: oracle/macaron@v0.21.0
uses: oracle/macaron@v0.22.0
with:
policy_file: policy.dl
output_dir: macaron-output
Expand Down
Loading