diff --git a/.github/workflows/branch-verify.yml b/.github/workflows/branch-verify.yml index 3f47043..d7d1432 100644 --- a/.github/workflows/branch-verify.yml +++ b/.github/workflows/branch-verify.yml @@ -7,7 +7,25 @@ on: jobs: verify-pr: - uses: entur/abt-gha-public/.github/workflows/gradle-open-source-verify.yml@v1 # no secrets necessary permissions: - contents: read \ No newline at end of file + contents: read + runs-on: "ubuntu-24.04" + steps: + - uses: actions/checkout@v6 + - name: Set up Java 25 + uses: actions/setup-java@v5 + with: + java-version: 25 + distribution: temurin + - name: Restore Gradle cache + uses: entur/gradle-cache-action/restore@v1 + - name: Build with Gradle Wrapper + run: ./gradlew build + - name: List .gradle directory + run: ls -l .gradle + - name: Save Gradle cache + if: always() # run even on failure so failed-build caches are stored + uses: entur/gradle-cache-action/save@v1 + with: + build-outcome: ${{ job.status }} diff --git a/.gitignore b/.gitignore index 8e8692a..94cd9ff 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ src/main/resources/rebel.xml integration-test-env/ build .gradle +.profileconfig.json diff --git a/README.md b/README.md index 51cb4b1..46a16c2 100644 --- a/README.md +++ b/README.md @@ -66,3 +66,9 @@ but with different offsets. Consuming all child parser contents before accessing # Release Release version is determined from the latest release tag. Add `[major|minor|patch]` to the commit message to control version increment. + + + + + + diff --git a/build.gradle b/build.gradle index f825664..51b15b8 100644 --- a/build.gradle +++ b/build.gradle @@ -50,3 +50,10 @@ jreleaser { } + + + + + + + diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37f78a6..c61a118 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME