Skip to content

Commit 2389828

Browse files
committed
Fix deprecated 'brew cask' calls
brew cask is now deprecated in favor of the `--cask` argument
1 parent c491801 commit 2389828

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
if: runner.os == 'macOS'
7979
run: |
8080
# XQuartz is needed by vdiffr
81-
brew cask install xquartz
81+
brew install --cask xquartz
8282
8383
# Use only binary packages
8484
echo 'options(pkgType = "binary")' >> ~/.Rprofile

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install system dependencies on macOS
4242
run: |
4343
# XQuartz is needed by vdiffr
44-
brew cask install xquartz
44+
brew install --cask xquartz
4545
4646
- name: Install dependencies
4747
run: |

0 commit comments

Comments
 (0)