Skip to content

Commit

Permalink
Update workflow to use JDK 17 with Gradle caching for efficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
mbakgun committed Nov 15, 2024
1 parent ee67f97 commit 394a213
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: 17
distribution: 'adopt'
cache: 'gradle'

- name: Build Web Application
run: ./gradlew :composeApp:wasmJsBrowserDevelopmentExecutableDistribution
Expand Down

0 comments on commit 394a213

Please sign in to comment.