Skip to content

chore(deps): bump chrono in the minor-and-patch group #130

chore(deps): bump chrono in the minor-and-patch group

chore(deps): bump chrono in the minor-and-patch group #130

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