Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 14, 2022
1 parent 1082dcc commit 3856ed3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
verify-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
- uses: gradle/wrapper-validation-action@55e685c48d84285a5b0418cd094606e199cca3b6 # tag=v1.0.5

build:
Expand All @@ -22,7 +22,7 @@ jobs:
matrix:
jdk: [11, 15]
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # tag=v3.0.11
with:
path: |
Expand All @@ -32,7 +32,7 @@ jobs:
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.jdk }}-gradlewrapper-${{ hashFiles('**/gradle-wrapper.properties') }}-gradlescripts-
- name: Set up JDK
uses: actions/setup-java@de1bb2b0c5634f0fc4438d7aa9944e68f9bf86cc # tag=v3.6.0
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
with:
distribution: adopt
java-version: ${{ matrix.jdk }}
Expand Down
6 changes: 3 additions & 3 deletions MappingTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ repositories {
}

def mcMappedAttribute = mapping.getMappingArtifactForTarget("net.minecraft")
ext.aValidAttrValueWhichCanBeTransformedToRequired = "net.fabricmc:intermediary:1.15.2:intermediary"
ext.aValidAttrValueWhichCanBeTransformedToRequired = "net.fabricmc:intermediary:1.19.3:intermediary"
ext.moduleMetadataAttrValue = ext.aValidAttrValueWhichCanBeTransformedToRequired
ext.setComponentMetadataRule = false
ext.attrDefaultValue = null
Expand Down Expand Up @@ -96,12 +96,12 @@ System.err.println("default attr value overridden: " + ext.attrDefaultValue)
System.err.println("This build is expected to fail with the error \"TODO: Actually transform.\". If build succeeds, transforms weren't ran as expected.\n")

mapping {
def yarn115 = "net.fabricmc:yarn:1.15.2+build.9:v2"
def yarn115 = "net.fabricmc:yarn:1.19.3-pre3+build.3:v2"
registerMapping(project, "net.minecraft", "net.fabricmc:intermediary:1.15.2")
registerMapping(project, "net.minecraft", yarn115)
registerNamespaceTranslator {
if (it == "$yarn115:intermediary") {
return "net.fabricmc:intermediary:1.15.2:intermediary"
return "net.fabricmc:intermediary:1.19.3:intermediary"
}
}
registerDefaultMappedConfiguration(project, "net.minecraft", "$yarn115:named")
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java-library'
id 'maven-publish'
id "com.gradle.plugin-publish" version "1.0.0"
id "com.gradle.plugin-publish" version "1.1.0"
id 'java-gradle-plugin'
id("dev.minco.gradle.defaults-plugin") version "0.2.62"
}
Expand Down Expand Up @@ -31,8 +31,8 @@ repositories {
}

dependencies {
compileOnly "org.jetbrains:annotations:23.0.0"
compileOnly "org.checkerframework:checker-qual:3.26.0"
compileOnly "org.jetbrains:annotations:23.1.0"
compileOnly "org.checkerframework:checker-qual:3.28.0"
testImplementation "junit:junit:4.13.2"
// TODO: actually test Mixin at the same time
//api 'org.minimallycorrect.mixin:Mixin:0.0.6'
Expand Down Expand Up @@ -64,7 +64,7 @@ allprojects {
resolutionStrategy {
failOnVersionConflict()

force('org.checkerframework:checker-qual:3.26.0')
force('org.checkerframework:checker-qual:3.28.0')
force('com.google.guava:guava:31.1-jre')
force('com.google.code.findbugs:jsr305:3.0.2')
def asmVer = '9.4'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 3856ed3

Please sign in to comment.