mirror of
https://github.com/planetmint/planetmint.git
synced 2025-08-01 08:13:15 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* Bump requests from 2.25.1 to 2.31.0 Bumps [requests](https://github.com/psf/requests) from 2.25.1 to 2.31.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.25.1...v2.31.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fixed vulnerability analysis (excluded new/different vulns) Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * disabled another vuln Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * adjust the right pipeline Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * fixed proper pipeline Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jürgen Eckel <juergen@riddleandcode.com>
38 lines
1006 B
YAML
38 lines
1006 B
YAML
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
name: Audit
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.9
|
|
|
|
- name: Install pip-audit
|
|
run: pip install --upgrade pip
|
|
|
|
- name: Setup poetry
|
|
uses: Gr1N/setup-poetry@v7
|
|
|
|
- name: Install dependencies
|
|
run: poetry install
|
|
|
|
- name: Create requirements.txt
|
|
run: poetry run pip freeze > requirements.txt
|
|
|
|
- name: Audit dependencies
|
|
run: poetry run pip-audit --ignore-vuln PYSEC-2022-203 --ignore-vuln PYSEC-2023-58 --ignore-vuln PYSEC-2023-57 --ignore-vuln GHSA-m2qf-hxjv-5gpq --ignore-vuln PYSEC-2022-4301
|