Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/cflite_batch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
# `undefined` is NOT a valid cargo-fuzz sanitizer. cargo-fuzz accepts
# only address/leak/memory/thread/none, so the UBSan leg failed at
# "Build Fuzzers (undefined)" every week from at least 2026-06-07 to
# 2026-07-26 with:
# error: invalid value 'undefined' for '--sanitizer <SANITIZER>'
# It is schedule-triggered, so it never showed on the main-branch
# board. cflite_pr.yml was already corrected; this file was missed.
sanitizer: [address]
steps:
- name: Build Fuzzers (${{ matrix.sanitizer }})
id: build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Initialize CodeQL
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3.28.1
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3.28.1
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
category: "/language:${{ matrix.language }}"
33 changes: 0 additions & 33 deletions .github/workflows/push-email-notify.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,19 @@ ai-cli-crash-capture/
# Fuzz harness build artifacts
fuzz/target/
rust-core/fuzz/target/

# Local database files
*.db
*.db-journal
*.db-shm
*.db-wal

# Local caches and agent worktrees
.cache/
.claude/

# Local export and build outputs
/exports/*.json
/exports/*.lgt
composer/*.beam
composer/build/
2 changes: 1 addition & 1 deletion audits/assail-classifications.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
;; inside `try { } catch` returning result<_, VeriSimError.t>. The
;; graceful degradation the finding asks for is already present.
(classification
(file "connectors/clients/rescript/src/VeriSimVql.res")
(file "connectors/clients/rescript/src/VeriSimVcl.res")
(category "UnsafeDeserialization")
(audit "try-wrapped stringify→parseExn round-trips")
(rationale "parse of self-stringified JSON inside try; cannot throw on external input"))
Expand Down
Loading