Skip to content

Commit

Permalink
Update gradle wrapper (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
csutorasa committed Mar 16, 2024
1 parent 4b83d13 commit a6b1c2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4.0.0
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
java-version: '21'
- name: Build JAR
run: ./gradlew jar --info --stacktrace --console=plain --build-cache --no-daemon
- name: Run tests
Expand All @@ -37,7 +37,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload JAR
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4
with:
name: wiclax4j
path: build/libs/*.jar
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
compileOnly("org.projectlombok:lombok:1.18.30")
annotationProcessor("org.projectlombok:lombok:1.18.30")

testImplementation("org.apache.groovy:groovy-all:4.0.17")
testImplementation("org.apache.groovy:groovy-all:4.0.20")
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
testImplementation("net.bytebuddy:byte-buddy:1.14.11")
testImplementation("org.objenesis:objenesis:3.3")
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit a6b1c2a

Please sign in to comment.