chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /tests/client_parity_tests #174
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 Advanced" | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: '27 17 * * 2' | |
| workflow_dispatch: | |
| jobs: | |
| analyze-rust: | |
| name: Analyze (rust) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| permissions: | |
| security-events: write | |
| packages: read | |
| actions: read | |
| contents: read | |
| steps: | |
| - name: Install Protoc | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: protoc | |
| - name: Checkout snapchain | |
| uses: actions/checkout@v6 | |
| with: | |
| path: ./snapchain | |
| fetch-depth: 0 | |
| - name: Checkout malachite (path dependency) | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: informalsystems/malachite | |
| ref: 13bca14cd209d985c3adf101a02924acde8723a5 | |
| path: ./malachite | |
| - name: Install Rust 1.95.0 | |
| uses: dtolnay/rust-toolchain@1.95.0 | |
| - name: Cache cargo registry + target | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: ./snapchain | |
| # Warm the target dir + fetch all deps so the buildless extractor (rust-analyzer) | |
| # has a fully resolvable workspace when it runs `cargo metadata`. | |
| - name: cargo check | |
| working-directory: ./snapchain | |
| run: cargo check --workspace --all-targets --locked | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: rust | |
| build-mode: none | |
| source-root: ./snapchain | |
| config: | | |
| paths-ignore: | |
| - "**/*_test.rs" | |
| - "**/*_tests.rs" | |
| - "**/test_*.rs" | |
| - "**/test_helper.rs" | |
| - "**/test_utils.rs" | |
| - "**/tests/**/*.rs" | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:rust" | |
| analyze-other: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| security-events: write | |
| packages: read | |
| actions: read | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ javascript-typescript, actions ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: none | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |