chore(deps): Bump zip from 8.1.0 to 8.2.0 #1492
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: Commisery | |
| on: | |
| workflow_call: | |
| pull_request: | |
| types: [edited, opened, synchronize, reopened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # This workflow uses a third-party action. | |
| # The existence of a `permissions` key denies all | |
| # permissions except those explicitly specified. | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| commit-message: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0 | |
| with: | |
| disable-sudo: true | |
| egress-policy: block | |
| allowed-endpoints: > | |
| api.github.com:443 | |
| - name: Run Commisery | |
| uses: tomtom-international/commisery-action@7da5fd139481d66e6fdbfd26229b433506f45ebe # v4.1.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| validate-pull-request: false | |
| validate-pull-request-title-bump: false |