From 8e262db8cb59633198eec93089188e04d1c35adb Mon Sep 17 00:00:00 2001 From: Lucian Smith Date: Fri, 10 May 2024 11:04:15 -0700 Subject: [PATCH] Update checkout for non-manylinux. --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fa05ac0969..33a71f9629 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -106,8 +106,13 @@ jobs: steps: - name: Checkout RoadRunner + if: matrix.platform.os_type == 'manylinux' uses: actions/checkout@v3 + - name: Checkout RoadRunner + if: matrix.platform.os_type != 'manylinux' + uses: actions/checkout@v4 + - name: Set MSVC as the default compiler on Windows if: matrix.platform.os_type == 'windows' uses: ilammy/msvc-dev-cmd@v1.12.1