From 9b9e516a0389a784b7eabe2bb4e11edc21e9d434 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:42:36 +0000 Subject: [PATCH 1/3] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5b4e617..d89924a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,7 +98,7 @@ jobs: - name: Cache binaries id: cache-bin - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: binaries key: ${{ runner.OS }}-binaries From 20b15125ab0f96863df6a3f55e9228a569c7d8f8 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Sat, 12 Sep 2026 10:05:48 +0200 Subject: [PATCH 2/3] remove redundant explicit link target --- src/structures/idt.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/structures/idt.rs b/src/structures/idt.rs index f15cedcc..b80a2290 100644 --- a/src/structures/idt.rs +++ b/src/structures/idt.rs @@ -293,8 +293,7 @@ pub struct InterruptDescriptorTable { /// The virtual (linear) address that caused the `#PF` is stored in the `CR2` register. /// The saved instruction pointer points to the instruction that caused the `#PF`. /// - /// The page-fault error code is described by the - /// [`PageFaultErrorCode`](struct.PageFaultErrorCode.html) struct. + /// The page-fault error code is described by the [`PageFaultErrorCode`] struct. /// /// The vector number of the `#PF` exception is 14. pub page_fault: Entry, From e6fedf7ef0f2cfe9ced5f6d1da487f0a23b9d754 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Sat, 12 Sep 2026 10:06:26 +0200 Subject: [PATCH 3/3] fix typos --- src/structures/paging/mapper/mapped_page_table/iter.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/structures/paging/mapper/mapped_page_table/iter.rs b/src/structures/paging/mapper/mapped_page_table/iter.rs index 507fbf35..31a701d6 100644 --- a/src/structures/paging/mapper/mapped_page_table/iter.rs +++ b/src/structures/paging/mapper/mapped_page_table/iter.rs @@ -141,7 +141,7 @@ impl MappedPageTableIter<'_, P> { /// Increments the current P4 index. /// - /// This sets the lower indixes to zero. + /// This sets the lower indices to zero. /// When reaching the end, this returns [`None`] . fn increment_p4_index(&mut self) -> Option<()> { self.p4_index += 1; @@ -159,7 +159,7 @@ impl MappedPageTableIter<'_, P> { /// Increments the current P3 index. /// - /// This sets the lower indixes to zero. + /// This sets the lower indices to zero. /// When reaching the end, this increments the next-higher index and returns [`None`]. fn increment_p3_index(&mut self) -> Option<()> { self.p3_index += 1; @@ -176,7 +176,7 @@ impl MappedPageTableIter<'_, P> { /// Increments the current P2 index. /// - /// This sets the lower indixes to zero. + /// This sets the lower indices to zero. /// When reaching the end, this increments the next-higher index and returns [`None`]. fn increment_p2_index(&mut self) -> Option<()> { self.p2_index += 1;