Skip to content

Bump crate-ci/typos from 1.33.1 to 1.34.0 #681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ValidatePullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Spell Check Repo
uses: crate-ci/typos@v1.33.1
uses: crate-ci/typos@v1.34.0

license-headers:
name: check license headers
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlight_host/benches/benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn guest_call_benchmark(c: &mut Criterion) {
fn guest_call_benchmark_large_param(c: &mut Criterion) {
let mut group = c.benchmark_group("guest_functions_with_large_parameters");
#[cfg(target_os = "windows")]
group.sample_size(10); // This benchark is very slow on Windows, so we reduce the sample size to avoid long test runs.
group.sample_size(10); // This benchmark is very slow on Windows, so we reduce the sample size to avoid long test runs.

// This benchmark includes time to first clone a vector and string, so it is not a "pure' benchmark of the guest call, but it's still useful
group.bench_function("guest_call_with_large_parameters", |b| {
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlight_host/src/seccomp/guest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub(crate) fn get_seccomp_filter_for_host_function_worker_thread(
)?
.try_into()?;

// If `openat` is an exclicitly allowed syscall, we shouldn't return the filter that forces it to return EACCES.
// If `openat` is an explicitly allowed syscall, we shouldn't return the filter that forces it to return EACCES.
if let Some(extra_syscalls) = extra_allowed_syscalls {
if extra_syscalls.contains(&libc::SYS_openat) {
return Ok(vec![allowlist]);
Expand Down
Loading