chore(deps): update github/codeql-action digest to cdefb33 (#1526) #89
This file contains hidden or 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: pylint check | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| pylint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install System dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -qq -y --no-install-recommends libxmlsec1-dev | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| id: setup_python | |
| with: | |
| python-version: '3.14' | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| save-cache: ${{ github.ref == 'refs/heads/main' }} | |
| cache-suffix: ${{ steps.setup_python.outputs.python-version }} | |
| version: 0.9.24 | |
| - name: Install deps | |
| run: uv sync --no-binary-package lxml --no-binary-package xmlsec --all-extras --group pylint | |
| - name: Run pylint | |
| run: uv run --no-sync pylint --output-format=github social_core/ |