Skip to content

Commit 241b627

Browse files
committed
fix: ci
1 parent 17ea90f commit 241b627

File tree

7 files changed

+3954
-3250
lines changed

7 files changed

+3954
-3250
lines changed

.github/workflows/jwst.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ jobs:
374374
CARGO_TERM_COLOR: always
375375

376376
- name: Upload analysis results to GitHub
377-
uses: github/codeql-action/upload-sarif@v2
377+
uses: github/codeql-action/upload-sarif@v3
378378
with:
379379
sarif_file: rust-clippy-results.sarif
380380
wait-for-processing: true

Cargo.lock

Lines changed: 9 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/keck/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jwst = [
1717
]
1818
api = ["utoipa"]
1919
schema = ["utoipa-swagger-ui"]
20+
sqlite = []
2021

2122
[dependencies]
2223
axum = { version = "0.6.20", features = ["headers", "ws"] }

libs/jwst-codec/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ ordered-float = { version = "4.1", features = ["arbitrary"] }
4949

5050
[target.'cfg(loom)'.dependencies]
5151
loom = { version = "0.7", features = ["checkpoint"] }
52+
# override the dev-dependencies feature
53+
async-lock = { version = "3.4.0", features = ["loom"] }
5254

5355
[dev-dependencies]
5456
assert-json-diff = "2.0"
@@ -57,7 +59,7 @@ lib0 = { version = "0.16", features = ["lib0-serde"] }
5759
ordered-float = { version = "4.1", features = ["proptest"] }
5860
path-ext = "0.1"
5961
proptest = "1.3"
60-
proptest-derive = "0.4"
62+
proptest-derive = "0.5"
6163
yrs = "=0.22.0"
6264

6365
[lints.rust]

libs/jwst-core/src/workspaces/metadata/pages.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use std::collections::HashMap;
22

33
use jwst_codec::{Any, Array, Map, Value};
44

5+
#[allow(dead_code)]
56
pub struct PageMeta {
67
pub id: String,
78
pub favorite: Option<bool>,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "OctoBase",
33
"version": "0.5.0",
44
"private": true,
5-
"packageManager": "pnpm@8.1.0",
5+
"packageManager": "pnpm@10.5.2",
66
"scripts": {
77
"dev": "turbo --filter @toeverything/octobase dev",
88
"build": "turbo --filter @toeverything/octobase build",

0 commit comments

Comments
 (0)