Skip to content

Commit

Permalink
Manually apply the majority of the dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Nov 25, 2024
1 parent 2251f08 commit a5a5f99
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache Gradle stuff
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: gradle-${{ hashFiles('*.gradle.kts', 'gradle.properties', '*/*.gradle.kts', 'gradle/**') }}
restore-keys: gradle-
Expand All @@ -16,9 +16,10 @@ jobs:
~/.gradle/wrapper
.gradle/loom-cache
- name: Set up JDK 21
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 21
distribution: zulu
- name: Build with Gradle
run: ./gradlew build --stacktrace
- name: Upload Fabric artifacts
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subprojects {
officialMojangMappings {
nameSyntheticMembers = true
}
parchment("org.parchmentmc.data:parchment-1.21:2024.07.28@zip")
parchment("org.parchmentmc.data:parchment-1.21:2024.11.10@zip")
})

compileOnly("com.demonwav.mcdev:annotations:2.1.0")
Expand Down
6 changes: 3 additions & 3 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ dependencies {
// Do NOT use other classes from fabric loader
modImplementation("net.fabricmc:fabric-loader:${rootProject["fabric_loader_version"]}")

implementation("com.electronwill.night-config:toml:3.6.0")
implementation("com.electronwill.night-config:toml:3.8.1")

modCompileOnly("me.shedaniel:RoughlyEnoughItems-api:16.0.783")
modCompileOnly("mezz.jei:jei-1.21.1-common-api:19.21.0.246")
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api:17.0.790")
modCompileOnly("mezz.jei:jei-1.21.1-common-api:19.21.0.247")
modCompileOnly("dev.emi:emi-xplat-intermediary:1.1.16+1.21.1") // Unfortunately, although the API does what I need, it does in a way that's wholly different from the other recipe viewers
}

Expand Down
4 changes: 2 additions & 2 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ dependencies {
isTransitive = false
}

include(implementation("com.electronwill.night-config:core:3.6.0")!!)
include(implementation("com.electronwill.night-config:toml:3.6.0")!!)
include(implementation("com.electronwill.night-config:core:3.8.1")!!)
include(implementation("com.electronwill.night-config:toml:3.8.1")!!)

modImplementation("com.terraformersmc:modmenu:12.0.0-beta.1")
}
Expand Down

0 comments on commit a5a5f99

Please sign in to comment.