Skip to content

Commit

Permalink
Updating problematic versions of ajoberstar repos (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
orchestr7 authored Sep 4, 2024
1 parent 2c65a75 commit a063bfe
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
# actions/checkout v1.* is needed for correct codecov upload, see https://github.com/actions/checkout/issues/237 for details
- uses: actions/checkout@v4
# ensure that gradle wrapper files in repository are valid by checking checksums
- uses: gradle/wrapper-validation-action@v2
- name: Set up JDK 8
- uses: gradle/actions/wrapper-validation@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 8
distribution: zulu
distribution: 'temurin'
java-version: 21
- name: Cache konan
uses: actions/cache@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 11
distribution: zulu
distribution: 'temurin'
java-version: 21
- name: Gradle build with remote cache
uses: burrunan/gradle-cache-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/diktat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 11
distribution: zulu
distribution: 'temurin'
java-version: 21
- uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
with:
# release workflow should have access to all tags
fetch-depth: 0
- name: Set up JDK 8
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 8
distribution: zulu
distribution: 'temurin'
java-version: 21
- name: Status git before
run: git status
- uses: burrunan/gradle-cache-action@v1
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ dependencies {
implementation("org.cqfn.diktat:diktat-gradle-plugin:1.2.5")
implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.22.0")
implementation("io.github.gradle-nexus:publish-plugin:2.0.0")
implementation("org.ajoberstar.reckon:reckon-gradle:0.13.0")
implementation("org.ajoberstar.grgit:grgit-core:4.1.0")
implementation("org.ajoberstar.reckon:reckon-gradle:0.18.3")
implementation("org.ajoberstar.grgit:grgit-core:5.2.2")
}
4 changes: 4 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
}

rootProject.name = "ktoml"

includeBuild("gradle/plugins")
Expand Down

0 comments on commit a063bfe

Please sign in to comment.