Skip to content

chore(deps): bump Swatinem/rust-cache from 2.9.1 to 2.9.2 #378

chore(deps): bump Swatinem/rust-cache from 2.9.1 to 2.9.2

chore(deps): bump Swatinem/rust-cache from 2.9.1 to 2.9.2 #378

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Weekly scan so the Security tab stays current
- cron: '15 4 * * 1' # Mondays 04:15 UTC
workflow_dispatch:
permissions:
contents: read
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write # upload SARIF results to GitHub Security tab
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
- language: rust
build-mode: none
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install Rust toolchain
if: matrix.language == 'rust'
uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # v (pinned SHA)
with:
toolchain: stable
- uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2
if: matrix.language == 'rust'
- name: Initialize CodeQL
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# Only flag high-confidence results
queries: security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
with:
category: /language:${{ matrix.language }}