chore(deps): bump dirs from 5.0.1 to 6.0.0 #6
Workflow file for this run
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 Analysis | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main, develop] | |
| schedule: | |
| - cron: "0 6 * * 1" | |
| jobs: | |
| analyze: | |
| name: CodeQL SAST Scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ["rust"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@1.94.0 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| # GPUI + tray-icon (gtk) link GTK / xkbcommon / xcb / fontconfig | |
| # via pkg-config; the build script panics without dev headers. | |
| - name: Install Linux build dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential pkg-config \ | |
| libgtk-3-dev libxkbcommon-x11-dev \ | |
| libxcb1-dev libxcb-render0-dev \ | |
| libxcb-shape0-dev libxcb-xfixes0-dev \ | |
| libfontconfig-dev | |
| - name: Build project | |
| run: cargo build --workspace --locked | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |