Restore the behavior of cssSelector before v1.16.2 for elements with … #1428
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: CodeQL | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| codeql: | |
| runs-on: ubuntu-latest | |
| name: "CodeQL" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: CodeQL Initialization | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: java | |
| queries: +security-and-quality | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v3 | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 |