fix: inform py version to CodeQL

This commit is contained in:
Alexandre Teles 2022-09-30 19:44:17 -03:00
parent 8c9696bf0e
commit 6625718f5a
No known key found for this signature in database
GPG Key ID: 260D825F04C0527E
5 changed files with 7 additions and 4 deletions

View File

@ -38,7 +38,7 @@ jobs:
path: reports/flake8/
security_checks:
needs: pytest
needs: flake8
runs-on: ubuntu-latest
name: Security check
steps:

View File

@ -39,7 +39,7 @@ jobs:
path: reports/flake8/
security_checks:
needs: pytest
needs: flake8
runs-on: ubuntu-latest
name: Security check
steps:

View File

@ -34,7 +34,7 @@ jobs:
path: reports/flake8/
security_checks:
needs: pytest
needs: flake8
runs-on: ubuntu-latest
name: Security check
steps:

View File

@ -2,7 +2,7 @@
![License: AGPLv3](https://img.shields.io/github/license/revanced/revanced-releases-api)
![GitHub last commit](https://img.shields.io/github/last-commit/revanced/revanced-releases-api)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/revanced/revanced-releases-api/Main%20build)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/revanced/revanced-releases-api/Build%20dev%20branch)
This is a simple API that returns the latest ReVanced releases, patches and contributors.

3
setup.py Normal file
View File

@ -0,0 +1,3 @@
from setuptools import setup
setup(name="revanced-releases-api", python_requires='>=3.10.6')