Submit and validate dependencies of GitHub Actions #140
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: Submit and validate dependencies of GitHub Actions | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '33 4 * * *' | |
| permissions: {} | |
| jobs: | |
| submit-actions-dependencies: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| sparse-checkout: | | |
| .github | |
| - uses: jessehouwing/actions-dependency-submission@9b86731d54e530d3bd899f1528b8640eb1024a66 # v1.0.11 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0 | |
| if: github.event_name == 'pull_request' | |
| with: | |
| retry-on-snapshot-warnings: true |