From f7c204280b717bc85551de61780c61c0110aa0c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 01:58:50 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 443ecd6..189b75b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -13,7 +13,7 @@ jobs: - name: Install dependencies run: sudo apt-get install -y cmake make llvm-dev lld clang libclang-dev - name: Checkout Enzyme - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: 'EnzymeAD/Enzyme' path: 'enzyme' @@ -24,7 +24,7 @@ jobs: working-directory: enzyme/build run: sudo make -j `nproc` install - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: 'main' - name: Configure