diff --git a/.github/workflows/ValidatePullRequest.yml b/.github/workflows/ValidatePullRequest.yml index 8b0a8e467..0bad4c6f3 100644 --- a/.github/workflows/ValidatePullRequest.yml +++ b/.github/workflows/ValidatePullRequest.yml @@ -65,7 +65,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Spell Check Repo - uses: crate-ci/typos@v1.30.3 + uses: crate-ci/typos@v1.31.1 # Gate PR merges on this specific "join-job" which requires all other # jobs to run first. We need this job since we cannot gate on particular jobs diff --git a/src/hyperlight_host/build.rs b/src/hyperlight_host/build.rs index 81649b8c0..e82f75d9a 100644 --- a/src/hyperlight_host/build.rs +++ b/src/hyperlight_host/build.rs @@ -33,7 +33,7 @@ fn main() -> Result<()> { // Build hyperlight_surrogate and // Set $HYPERLIGHT_SURROGATE_DIR env var during rust build so we can // use it with RustEmbed to specify where hyperlight_surrogate.exe is - // to include as an embedded resource in the surrograte_process_manager + // to include as an embedded resource in the surrogate_process_manager // We need to copy/rename the source for hyperlight surrogate into a // temp directory because we cannot include a file name `Cargo.toml` diff --git a/src/hyperlight_host/src/sandbox/uninitialized.rs b/src/hyperlight_host/src/sandbox/uninitialized.rs index e38647d8a..ae3b5c05f 100644 --- a/src/hyperlight_host/src/sandbox/uninitialized.rs +++ b/src/hyperlight_host/src/sandbox/uninitialized.rs @@ -335,7 +335,7 @@ mod tests { use crossbeam_queue::ArrayQueue; use hyperlight_common::flatbuffer_wrappers::function_types::{ParameterValue, ReturnValue}; use hyperlight_testing::logger::{Logger as TestLogger, LOGGER as TEST_LOGGER}; - use hyperlight_testing::tracing_subscriber::TracingSubscriber as TestSubcriber; + use hyperlight_testing::tracing_subscriber::TracingSubscriber as TestSubscriber; use hyperlight_testing::{simple_guest_as_string, simple_guest_exe_as_string}; use log::Level; use serde_json::{Map, Value}; @@ -910,7 +910,7 @@ mod tests { fn test_trace_trace() { TestLogger::initialize_log_tracer(); rebuild_interest_cache(); - let subscriber = TestSubcriber::new(tracing_level::TRACE); + let subscriber = TestSubscriber::new(tracing_level::TRACE); tracing::subscriber::with_default(subscriber.clone(), || { let correlation_id = Uuid::new_v4().as_hyphenated().to_string(); let span = tracing::error_span!("test_trace_logs", correlation_id).entered();