-
-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
According to the README, there's a python-version| argument but the actual action does not accept it.
This is the output I get in my action:
Warning: Unexpected input(s) 'python-version', valid inputs are ['configfile', 'profile', 'tests', 'skips', 'severity', 'confidence', 'exclude', 'baseline', 'ini', 'targets']
Content of my bandit.yaml file:
name: Bandit
on: [push, pull_request]
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Perform Bandit Analysis
uses: PyCQA/bandit-action@v1
with:
python-version: '3.13'Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working