chore(deps): bump dkhunt27/action-conventional-commits from 1.3.0 to 3.3 #543
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: Verify workflows | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
name: Verify | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup tools cache | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: bin | |
key: ${{ runner.os }}-tools-${{ hashFiles('Makefile') }} | |
- name: Install tools | |
if: '!steps.cache.outputs.cache-hit' | |
run: make tools | |
- name: Verify that workflows are up to date | |
run: |- | |
make generate | |
git diff --exit-code | |
- name: Lint workflows | |
run: make lint |