Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/backend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Setup Java (GraalVM as specified in original, potentially for build performance/features)
# Enables Gradle caching for faster subsequent builds
- name: Set up JDK 21 (GraalVM)
uses: actions/setup-java@v4
uses: actions/setup-java@v6
with:
java-version: '21'
distribution: 'graalvm' # Using GraalVM as specified
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
# Setup Java (Temurin is sufficient and common for this task)
# Re-enable Gradle caching for this job as well
- name: Set up JDK 21 (Temurin)
uses: actions/setup-java@v4
uses: actions/setup-java@v6
with:
java-version: '21'
distribution: 'temurin' # Standard Temurin JDK is fine here
Expand Down
Loading