Skip to content

chore(deps): bump proptest from 1.5.0 to 1.11.0 in /contracts/escrow #216

chore(deps): bump proptest from 1.5.0 to 1.11.0 in /contracts/escrow

chore(deps): bump proptest from 1.5.0 to 1.11.0 in /contracts/escrow #216

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '30 1 * * 0' # Weekly
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: autobuild
- language: rust
build-mode: manual
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
build-mode: ${{ matrix.build-mode }}
- name: Build Rust
if: matrix.language == 'rust'
run: |
cd contracts/escrow
cargo clean
cargo build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"