[dependency](deps): Bump the npm-all group with 37 updates #138
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: Scheduled repo analysis with git-sizer | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| run-git-sizer: | |
| name: git-sizer - ${{ github.repository }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - name: Run git-sizer | |
| id: sizer | |
| uses: ChrisCarini/github-git-sizer-action@09eaa4ae73038a5f0bbdc7e7b964f1bf6114c277 # latest | |
| with: | |
| flags: "--threshold=0" | |
| - name: Print git-sizer output | |
| run: | | |
| printf "%s\n" "${{ steps.sizer.outputs.result }}" |