chore(deps): Bump rui314/setup-mold from 6bebc01caac32fb5251ee64f60cea0322d0e6574 to 8de9eea54963d01c1a6c200606257d65bd53bea1 #683
Workflow file for this run
This file contains 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: "conventional commits" | |
permissions: {} | |
on: | |
pull_request: | |
jobs: | |
cog-check: | |
name: "cog check" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
fetch-depth: 0 | |
# pick the pr HEAD instead of the merge commit | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: taiki-e/install-action@0eaa33a7adfb219fec683c2480a4eb8c79bfeff1 # v2.33.20 | |
with: | |
tool: [email protected] | |
- run: cog check ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} |