We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb6de1 commit 661b50fCopy full SHA for 661b50f
.github/workflows/R-CMD-check.yaml
@@ -48,14 +48,14 @@ jobs:
48
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
49
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
50
51
- - name: Install Java
+ - name: Install Java (Ubuntu)
52
if: runner.os == 'Linux'
53
run: sudo apt-get install -y default-jre-headless
54
55
+ - name: Install Java (Windows)
56
if: runner.os == 'Windows'
57
run: |
58
- choco install jre8 --no-progress -y
+ choco install openjdk11 --no-progress -y
59
echo "JAVA_HOME=" >> $env:GITHUB_ENV
60
61
- name: Install dependencies
0 commit comments