From e4c8d1ae47b13cbd1fac7f5e1e124c1feef0855a Mon Sep 17 00:00:00 2001 From: JR Date: Thu, 4 Jan 2024 14:36:23 +0100 Subject: [PATCH] GitHub: update d.yml * Test ldc 1.18 on Mac too * Update to `actions/checkout@v3` * Set `continue-on-error: false` --- .github/workflows/d.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/d.yml b/.github/workflows/d.yml index 47529ad..d47055e 100644 --- a/.github/workflows/d.yml +++ b/.github/workflows/d.yml @@ -26,15 +26,15 @@ jobs: dc: [ dmd-latest, dmd-2.084.0, ldc-latest, ldc-1.18.0 ] exclude: - { os: macOS-latest, dc: dmd-2.084.0 } - - { os: macOS-latest, dc: ldc-1.18.0 } runs-on: ${{ matrix.os }} + continue-on-error: false env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: 'Install D compiler' uses: dlang-community/setup-dlang@v1 @@ -57,7 +57,7 @@ jobs: - name: 'Deploy documentation to GitHub Pages' if: matrix.dc == 'dmd-latest' && matrix.os == 'ubuntu-latest' && success() - uses: crazy-max/ghaction-github-pages@v2.2.0 + uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages keep_history: false