From 805a2225f82b2d3e8222dc5dd85f68fe43006ce5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 20:48:37 +0000 Subject: [PATCH] Update actions/checkout action to v7 --- .github/workflows/style.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 15b8770b2..0c77374ba 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -9,7 +9,7 @@ jobs: name: Check style and headers runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: sudo apt-get -y update - run: sudo apt-get -y install clang-format git python3 - run: misc/fix-style --check @@ -19,7 +19,7 @@ jobs: name: Clean compilation runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: sudo apt-get -y update - run: sudo apt-get -y install build-essential mtools perl libxml-libxml-perl libxml-simple-perl libfile-copy-recursive-perl bc - run: make configure diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ac3e0a26..1b31d5165 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: name: Test utility programs runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: sudo apt-get -y update - run: sudo apt-get -y install python3 python3-yaml - run: python3 misc/gen_dependencies --test @@ -19,7 +19,7 @@ jobs: name: Unit tests runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: sudo apt-get -y update - run: sudo apt -y install build-essential mtools perl libxml-libxml-perl libxml-simple-perl libfile-copy-recursive-perl bc python3 python3-venv qemu-system-x86 clang - run: make configure