Skip to content

Commit

Permalink
Forcing Java 8 in Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
schuemie committed Jun 14, 2024
1 parent c1eaf11 commit e2d0aa9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/R_CMD_check_Hades.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '8'

- uses: r-lib/actions/setup-r@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/R_CMD_check_main_weekly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '8'

- uses: r-lib/actions/setup-r@v2
with:
Expand Down

0 comments on commit e2d0aa9

Please sign in to comment.