Skip to content

Commit

Permalink
1.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
melontini committed Apr 25, 2024
1 parent f1c2004 commit 4472b17
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand All @@ -32,11 +32,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand All @@ -57,11 +57,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand All @@ -79,11 +79,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand All @@ -30,11 +30,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand All @@ -55,11 +55,11 @@ jobs:
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ processResources {
}
}

def targetJavaVersion = 17
def targetJavaVersion = 21
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3
minecraft_version=1.20.5
yarn_mappings=1.20.5+build.1
loader_version=0.15.10
# Mod Properties
mod_version=0.1.0
maven_group=me.melontini
archives_base_name=handy-tests
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.97.0+1.20.4
fabric_version=0.97.6+1.20.5

0 comments on commit 4472b17

Please sign in to comment.