From 3c07aee323c84cadf223cebae15fa022d7a67b2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 18:42:12 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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 25a6976..19eb76c 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - uses: cachix/install-nix-action@v31 - name: "Test run: hello-world, efi, qemu" run: |