CVE-2023-4220: Vulnerable Chamilo LMS container #866
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: Vulhub Format Check and Lint | |
on: [push, pull_request] | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: install dependencies | |
run: | | |
python -m pip install -U pytest | |
sudo wget -O /usr/local/bin/hadolint https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 | |
sudo chmod +x /usr/local/bin/hadolint | |
- name: Check | |
run: | | |
python -m pytest tests/check | |
markdown-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: install dependencies | |
run: | | |
npm install -g markdownlint-cli | |
- name: check markdown | |
run: | | |
markdownlint -c tests/markdownlint.json . |