Skip to content

Commit

Permalink
ci: fixed jdk distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
itkhanz authored Oct 29, 2023
1 parent a96f3b4 commit e1389b1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- name: Setup Java JDK 17
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v3
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: 17

- name: Cache Maven packages
uses: actions/cache@v3.3.2
uses: actions/cache@v3
with:
path: ~/.m2/repository # Cache the Maven repository
key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} # Cache key based on the OS and project files
Expand Down

0 comments on commit e1389b1

Please sign in to comment.