fix: make ci and local use the same toolchain (#72)

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
yihong
2025-07-07 10:40:53 +08:00
committed by GitHub
parent abd5dff9b5
commit 72aead5466
41 changed files with 1248 additions and 894 deletions
+8 -5
View File
@@ -1575,11 +1575,14 @@ pub fn get_default_policyes() -> HashMap<String, PolicyDoc> {
default_policies
.iter()
.map(|(n, p)| {
(n.to_string(), PolicyDoc {
version: 1,
policy: p.clone(),
..Default::default()
})
(
n.to_string(),
PolicyDoc {
version: 1,
policy: p.clone(),
..Default::default()
},
)
})
.collect()
}