diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5be6f17..2965b00 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -18,26 +18,11 @@ jobs: steps: - name: "Checkout repository" uses: "actions/checkout@v4" - - uses: "actions/cache@v4" - with: - path: "~/.cache/pip" - key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}" - restore-keys: | - ${{ runner.os }}-pip- - - name: "Set up Python" - uses: "actions/setup-python@v5" - with: - python-version: "3.11" - - name: "Manually install from sources" - run: | - python -m pip install -e . -e ./pulp-glue-gem - echo "CODEQL_PYTHON=$(which python)" >> "$GITHUB_ENV" - name: "Initialize CodeQL" uses: "github/codeql-action/init@v3" with: languages: "python" - setup-python-dependencies: false - name: "Perform CodeQL Analysis" uses: "github/codeql-action/analyze@v3"