From a3caec86200be64461c430255433beb6d406a6fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 12:18:32 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout 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 a1dce39..443ecd6 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@v3 + uses: actions/checkout@v4 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@v3 + uses: actions/checkout@v4 with: path: 'main' - name: Configure