-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to find version v1
#1
Comments
@sachin-traice the correct name is: |
@angrymeir, how can I check if my code has issues? |
obligatory disclaimer: I'm not associated with this project. Clarification on the cause and workaround (fix) for this:
@sachin-traice the corrected workflow for this repository would be: jobs:
scan:
name: Bandit Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3 # Caution this version is out of date
- name: Bandit Scanning
uses: shundor/python-bandit-scan@v1.0 OR for bandit-action (as documented) would instead be: uses: mdegis/bandit-action@v1.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
path: "."
level: high
confidence: high
exit_zero: true Hope this helps. Please note I will not be following this discussion further and can not be expected to respond. Sorry.@shundor feel free to keep or remove this comment. It's your project after all. |
Probably best to use that repo, as this one no longer works anyway |
Showing an
after running
The text was updated successfully, but these errors were encountered: