Skip to content

feat(checker): add boa checker (#4763) #271

feat(checker): add boa checker (#4763)

feat(checker): add boa checker (#4763) #271

Workflow file for this run

name: Update checkers table
on:
push:
branches:
- main
paths:
- 'cve_bin_tool/checkers/__init__.py'
permissions:
contents: read
jobs:
formatting:
permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
name: Update checkers table
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.11'
cache: 'pip'
- name: Install cve-bin-tool
run: |
python -m pip install --upgrade wheel
python -m pip install .
- name: Run format_checkers.py
run: |
python cve_bin_tool/format_checkers.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
with:
commit-message: "chore: update checkers table"
title: "chore: update checkers table"
branch: chore-update-table
delete-branch: true
author: GitHub <[email protected]>