check sbom #7
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
| # This workflow will build and test a golang project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
| name: comp check | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Use HTTPS instead of SSH for Git cloning | |
| run: git config --global url.https://github.com/.insteadOf ssh://git@github.com/ | |
| - name: Checkout project | |
| uses: actions/checkout@v5 | |
| - name: check size | |
| run: | | |
| sudo du / -h --max-depth 4 | sort -h | |
| docker image ls | |
| df -h | |
| - name: Run GitHub Action for ORT | |
| uses: oss-review-toolkit/ort-ci-github-action@main | |
| with: | |
| run: 'cache-dependencies,analyzer,scanner,evaluator,advisor,reporter,upload-results' |