From 4aeee5e1e1f263bf7769e78eaddc4c100f28d146 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:44:21 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 19eb76c..1096df9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: name: "nix flake check (evaluation, style)" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: cachix/install-nix-action@v31 - uses: DeterminateSystems/magic-nix-cache-action@main - run: nix flake check @@ -26,7 +26,7 @@ jobs: CC: gcc-11 CXX: g++-11 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: install pre-requisites run: sudo apt-get update && sudo apt-get install -y catch2 cmake gcc-11 g++-11 - name: Build @@ -54,7 +54,7 @@ jobs: name: "nix shell works" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: cachix/install-nix-action@v31 - uses: DeterminateSystems/magic-nix-cache-action@main - run: nix develop . --command bash -c "echo hi" @@ -63,7 +63,7 @@ jobs: name: "Nix Flake: Build all Guest Tests" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: cachix/install-nix-action@v31 - uses: DeterminateSystems/magic-nix-cache-action@main - name: "Test run: hello-world, efi, qemu" @@ -81,7 +81,7 @@ jobs: name: "Run hello-world in all variants" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: cachix/install-nix-action@v31 - name: "Test run: hello-world, efi, qemu" run: |