[dependabot][all](deps): Bump the dependabot-all group with 10 updates #156
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@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| 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 }}" |