mirror of
https://github.com/actions/setup-python.git
synced 2025-04-20 03:53:30 +00:00
Merge 32e118698c
into 9a115684c9
This commit is contained in:
commit
fb3d914753
35
.github/workflows/njsscan-analysis.yml
vendored
Normal file
35
.github/workflows/njsscan-analysis.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# This workflow uses actions that are not certified by GitHub.
|
||||||
|
# They are provided by a third-party and are governed by
|
||||||
|
# separate terms of service, privacy policy, and support
|
||||||
|
# documentation.
|
||||||
|
|
||||||
|
# This workflow integrates njsscan with GitHub's Code Scanning feature
|
||||||
|
# nodejsscan is a static security code scanner that finds insecure code patterns in your Node.js applications
|
||||||
|
|
||||||
|
name: njsscan sarif
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [ main ]
|
||||||
|
schedule:
|
||||||
|
- cron: '15 7 * * 3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
njsscan:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: njsscan code scanning
|
||||||
|
steps:
|
||||||
|
- name: Checkout the code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: nodejsscan scan
|
||||||
|
id: njsscan
|
||||||
|
uses: ajinabraham/njsscan-action@7237412fdd36af517e2745077cedbf9d6900d711
|
||||||
|
with:
|
||||||
|
args: '. --sarif --output results.sarif || true'
|
||||||
|
- name: Upload njsscan report
|
||||||
|
uses: github/codeql-action/upload-sarif@v1
|
||||||
|
with:
|
||||||
|
sarif_file: results.sarif
|
21
SECURITY.md
Normal file
21
SECURITY.md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Security Policy
|
||||||
|
|
||||||
|
## Supported Versions
|
||||||
|
|
||||||
|
Use this section to tell people about which versions of your project are
|
||||||
|
currently being supported with security updates.
|
||||||
|
|
||||||
|
| Version | Supported |
|
||||||
|
| ------- | ------------------ |
|
||||||
|
| 5.1.x | :white_check_mark: |
|
||||||
|
| 5.0.x | :x: |
|
||||||
|
| 4.0.x | :white_check_mark: |
|
||||||
|
| < 4.0 | :x: |
|
||||||
|
|
||||||
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
Use this section to tell people how to report a vulnerability.
|
||||||
|
|
||||||
|
Tell them where to go, how often they can expect to get an update on a
|
||||||
|
reported vulnerability, what to expect if the vulnerability is accepted or
|
||||||
|
declined, etc.
|
@ -30,7 +30,7 @@ pdf2image==1.12.1
|
|||||||
|
|
||||||
pefile==2021.9.3; python_full_version >= '3.6.0'
|
pefile==2021.9.3; python_full_version >= '3.6.0'
|
||||||
|
|
||||||
pillow==7.2
|
pillow==9.0.0
|
||||||
|
|
||||||
pygments==2.6.1
|
pygments==2.6.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user