chore(deps): bump the all-dependencies group with 3 updates #1578
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" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
analyze-javascript: | |
name: Analyze JavaScript/TypeScript | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: javascript-typescript | |
- uses: github/codeql-action/autobuild@v3 | |
- uses: github/codeql-action/analyze@v3 | |
analyze-rust: | |
name: Analyze Rust | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
env: | |
CODEQL_ENABLE_EXPERIMENTAL_FEATURES: true | |
SQLX_OFFLINE: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-nix | |
with: | |
cachix_auth_token: ${{ secrets.CACHIX_AUTH_TOKEN_LANA_CI }} | |
google_credentials: ${{ secrets.GOOGLE_CREDENTIALS }} | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: rust | |
- uses: ./.github/actions/cache-rust | |
- run: nix develop -c cargo build --locked | |
- uses: github/codeql-action/analyze@v3 |