pkexec: Use realpath when comparing org.freedesktop.policykit.exec.path #214
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
--- | |
# vi: ts=2 sw=2 et: | |
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-24.04 | |
permissions: | |
security-events: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.language }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['c-cpp', 'javascript-typescript', 'python'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-extended,security-and-quality | |
- name: Install dependencies | |
if: ${{ matrix.language == 'c-cpp' }} | |
run: | | |
sudo sed -i 's/^Types: deb/Types: deb deb-src/g' /etc/apt/sources.list.d/*.sources | |
sudo apt update | |
sudo apt build-dep -y policykit-1 | |
# polkit in Ubuntu Jammy (ATTOW) doesn't have the latest build dependencies yet | |
sudo apt install -y duktape-dev meson | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |