feat: Added support for graphs for multiple build tools #63
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test scanning of dependencies | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
paths: | |
- scan-dependencies/** | |
- .github/workflows/test-login.yml | |
workflow_dispatch: | |
env: | |
MEND_URL: ${{ secrets.MEND_URL }} | |
# MEND_ORGANIZATION: ${{ secrets.MEND_ORGANIZATION }} | |
# MEND_ORGANIZATION_KEY: ${{ secrets.MEND_ORGANIZATION_KEY }} | |
MEND_USER_KEY: ${{ secrets.MEND_USER_KEY }} | |
MEND_EMAIL: ${{ secrets.MEND_EMAIL }} | |
jobs: | |
test-scan-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Mend CLI | |
uses: ./setup | |
- name: Login into Mend.io | |
uses: ./login | |
- name: Perform scan | |
uses: ./scan-dependencies | |
with: | |
scope: "*//GitHub Actions Tests//test-scan-dependencies" | |
- name: Debug | |
run: | | |
ls -al | |
tree | |