chore(deps): bump kubernetes from 30.1.0 to 31.0.0 #11766
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr-lint-test | |
on: | |
push: | |
branches: | |
- "master" | |
- "v3" | |
- "v4.*" | |
pull_request: | |
branches: | |
- "master" | |
- "v3" | |
- "v4.*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test if changes are in not ignored paths | |
id: are-non-ignored-files-changed | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: ./** | |
files_ignore: | | |
.github/** | |
README.md | |
docs/** | |
permissions/** | |
mkdocs.yml | |
.backportrc.json | |
- name: Install poetry | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
python -m pip install --upgrade pip | |
pipx install poetry | |
- name: Set up Python ${{ matrix.python-version }} | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "poetry" | |
- name: Install dependencies | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry install | |
poetry run pip list | |
VERSION=$(curl --silent "https://api.github.com/repos/hadolint/hadolint/releases/latest" | \ | |
grep '"tag_name":' | \ | |
sed -E 's/.*"v([^"]+)".*/\1/' \ | |
) && curl -L -o /tmp/hadolint "https://github.com/hadolint/hadolint/releases/download/v${VERSION}/hadolint-Linux-x86_64" \ | |
&& chmod +x /tmp/hadolint | |
- name: Poetry check | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry lock --check | |
- name: Lint with flake8 | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run flake8 . --ignore=E266,W503,E203,E501,W605,E128 --exclude contrib | |
- name: Checking format with black | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run black --check . | |
- name: Lint with pylint | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run pylint --disable=W,C,R,E -j 0 -rn -sn prowler/ | |
- name: Bandit | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run bandit -q -lll -x '*_test.py,./contrib/' -r . | |
- name: Safety | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run safety check --ignore 70612 | |
- name: Vulture | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run vulture --exclude "contrib" --min-confidence 100 . | |
- name: Hadolint | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
/tmp/hadolint Dockerfile --ignore=DL3013 | |
- name: Test with pytest | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
run: | | |
poetry run pytest -n auto --cov=./prowler --cov-report=xml tests | |
- name: Upload coverage reports to Codecov | |
if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |