Skip to content

fix: upgrade upload-artifact to v4 #561

fix: upgrade upload-artifact to v4

fix: upgrade upload-artifact to v4 #561

Workflow file for this run

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