chore(BAC-21): bump actions/download-artifact to v4 #558
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: 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 |