Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d589b68
add Gradle wrapper validation action
thestinger Nov 26, 2024
a5693d1
update action-junit-report to v5
thestinger Nov 26, 2024
8c4968a
update Gradle to 8.12
thestinger Jan 4, 2025
f7da1b1
add Gradle verification metadata
thestinger Jan 4, 2025
f9bd7f5
update zstd-jni to 1.5.6-9
thestinger Jan 13, 2025
c93603f
update Apache Commons Compress to 1.27.1
thestinger Jan 13, 2025
4a8cd63
update Kotlin to 2.1.0
thestinger Jan 13, 2025
29560ce
update Gradle to 8.13
thestinger Mar 20, 2025
a4aa88b
update Kotlin to 2.1.20
thestinger Mar 20, 2025
4c7cc04
update Gradle to 8.14.2
thestinger Jun 9, 2025
2162a93
update Gradle to 8.14.3
thestinger Aug 7, 2025
0c60969
update GitHub actions/checkout to 5
thestinger Aug 11, 2025
dd13c42
update GitHub actions/setup-java to 5
thestinger Aug 21, 2025
8828202
update Gradle to 9.1.0
thestinger Sep 19, 2025
db922b8
update GitHub action for Gradle wrapper validation to v5
thestinger Oct 1, 2025
41c51a8
update GitHub action for Gradle wrapper validation to v6
thestinger Mar 24, 2026
357b1f5
update Gradle to 9.5.1
thestinger May 19, 2026
8fa64cf
add dependabot configuration
thestinger Jun 5, 2026
9ae0620
Bump actions/checkout from 5 to 6
dependabot[bot] Jun 5, 2026
ccdb077
Bump actions/upload-artifact from 4 to 7
dependabot[bot] Jun 5, 2026
0bf8a3a
Bump actions/checkout from 6 to 7
dependabot[bot] Jun 18, 2026
583d945
raise dependabot open pull requests limit
thestinger Jun 18, 2026
592031c
Bump gradle-wrapper from 9.5.1 to 9.6.1
dependabot[bot] Jun 26, 2026
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
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
target-branch: main
open-pull-requests-limit: 20
- package-ecosystem: gradle
directory: "/"
schedule:
interval: daily
target-branch: main
open-pull-requests-limit: 20
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: 17
Expand All @@ -31,14 +31,14 @@ jobs:
run: ./gradlew uberJar check

- name: Upload JAR
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: seedvault-chunker-${{ github.sha }}-jar
path: |
app/build/libs/seedvault-chunker.jar

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
report_paths: '**/build/test-results/**/TEST-*.xml'
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/validate-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate Gradle Wrapper

on: [pull_request, push]

jobs:
validation:
name: Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: gradle/actions/wrapper-validation@v6
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":lib"))
implementation("com.github.ajalt.clikt:clikt:4.4.0")
implementation("org.apache.commons:commons-compress:1.26.2")
implementation("com.github.luben:zstd-jni:1.5.6-3")
implementation("org.apache.commons:commons-compress:1.27.1")
implementation("com.github.luben:zstd-jni:1.5.6-9")
}

kotlin {
Expand All @@ -37,4 +37,4 @@ tasks.register<Jar>("uberJar") {
from({
configurations.runtimeClasspath.get().filter { it.name.endsWith("jar") }.map { zipTree(it) }
})
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlin = "1.9.22"
kotlin = "2.1.20"

[plugins]
jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
529 changes: 529 additions & 0 deletions gradle/verification-metadata.xml

Large diffs are not rendered by default.

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
8 changes: 6 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#Wed Jun 26 09:47:03 BRT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionSha256Sum=9c0f7faeeb306cb14e4279a3e084ca6b596894089a0638e68a07c945a32c9e14
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading
Loading