Update Identity bindings to 408002d1b6e6c6b6aee907c1dc2f6b56abd6adf9 #7421
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: CLOC | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| cloc: | |
| name: CLOC | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Set up cloc | |
| run: | | |
| sudo apt update | |
| sudo apt -y install cloc | |
| - name: Print lines of code | |
| run: cloc --vcs git |