From 8d7fd4bb19b764a8285de999e9b64bd425d5eec0 Mon Sep 17 00:00:00 2001 From: Paul Backus Date: Tue, 4 Mar 2025 07:41:11 -0500 Subject: [PATCH] Upgrade setup-dlang Github Action to v2 This allows dmd-latest to be used for testing on macOS. --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 90e0b1c..adb2312 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,15 +22,18 @@ jobs: - ldc-1.29.0 - ldc-1.28.1 exclude: + # macOS requires DMD >= 2.107.1 - os: macOS-latest - - dc: dmd-2.098.1 + dc: dmd-2.099.1 + - os: macOS-latest + dc: dmd-2.098.1 runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v2 - name: Install D compiler - uses: dlang-community/setup-dlang@v1 + uses: dlang-community/setup-dlang@v2 with: compiler: ${{ matrix.dc }}