You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update NOTEBOOK.md with CI fix session and CodeQL upgrade schedule
- Add January 29, 2026 session log documenting CI workflow fixes
- Schedule CodeQL Action v3 → v4 upgrade for November 2026
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: NOTEBOOK.md
+65Lines changed: 65 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ The RIDDL project is a mature compiler and toolchain for the Reactive Interface
19
19
| Date | Task | Notes |
20
20
|------|------|-------|
21
21
| March 1, 2026 | Review and remove `doc/src/main/hugo/content/`| Hugo content migrated to ossum.tech/riddl. Redirect site is in `doc/redirect-site/`. After confirming redirects have been working for ~1 month, the Hugo content directory can be deleted. Keep `doc/redirect-site/` for ongoing redirects. |
22
+
| November 2026 | Upgrade CodeQL Action v3 → v4 | GitHub deprecating CodeQL Action v3 in December 2026. Update `.github/workflows/scala.yml` line 182: `github/codeql-action/upload-sarif@v3` → `@v4`. See [changelog](https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/). |
22
23
23
24
---
24
25
@@ -428,6 +429,70 @@ The `pseudoCodeBlock` parser now allows comments before and/or after `???`:
428
429
429
430
## Session Log
430
431
432
+
### January 29, 2026 (CI Build Fix)
433
+
434
+
**Focus**: Fix failing GitHub Actions workflows
435
+
436
+
**Root Causes Identified**:
437
+
1.`diagrams` module referenced in workflows but moved to `riddl-gen` repository
438
+
2. Scala version paths incorrect: `scala-3.4.3` instead of `scala-3.3.7` LTS
439
+
440
+
**Tasks Completed**:
441
+
1. ✅ **Fixed scala.yml**
442
+
- Removed `diagrams/publishLocal` (line 104)
443
+
- Changed all `scala-3.4.3` → `scala-3.3.7` (env var, cache paths, artifact paths)
444
+
2. ✅ **Fixed coverage.yml**
445
+
- Removed `diagrams/Test/compile` and `diagrams/test`
446
+
- Changed all `scala-3.4.3` → `scala-3.3.7` in artifact paths
0 commit comments