Files
component-detection-depende…/README.md
T

28 lines
661 B
Markdown
Raw Normal View History

2023-01-20 01:49:01 +00:00
# Conda dependency submission action
2022-08-25 09:12:00 -07:00
2023-01-20 01:49:01 +00:00
This repository scans Conda environment.yaml files and uploads the results to the dependency graph. While GitHub does not support alerting on OS-level dependencies, it will alert on any PyPI dependencies that are defined in the environment.yaml.
2022-08-25 09:12:00 -07:00
2022-10-04 15:27:26 -07:00
### Example workflow
2023-01-20 01:49:01 +00:00
2022-08-25 09:12:00 -07:00
```yaml
2023-01-20 01:49:01 +00:00
name: Conda dependency submission
2022-10-04 15:27:26 -07:00
2023-01-20 01:49:01 +00:00
on:
2022-10-04 15:27:26 -07:00
workflow_dispatch:
2023-01-20 01:49:01 +00:00
push:
2022-10-04 15:27:26 -07:00
2023-01-19 18:05:50 -08:00
permissions:
id-token: write
contents: write
2022-10-04 15:27:26 -07:00
jobs:
2023-01-20 01:49:01 +00:00
dependency-submission:
2022-10-04 15:27:26 -07:00
runs-on: ubuntu-latest
steps:
2023-01-20 01:49:01 +00:00
- uses: actions/checkout@v3
- name: Conda dependency scanning
2023-01-19 18:06:08 -08:00
uses: jhutchings1/[email protected]
2023-01-19 18:05:50 -08:00
```