Skip to content

Commit 0bbcb26

Browse files
authored
update bootstrap versions (#53)
1 parent 58120d1 commit 0bbcb26

9 files changed

Lines changed: 24 additions & 18 deletions

File tree

β€Ž.github/workflows/build-pull-request.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: macos-latest
88

99
steps:
10-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
11-
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
11+
- uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 #v4.4.1
1212
- run: |
1313
./gradlew build
1414
./gradlew -p test-plugin build

β€Ž.github/workflows/publish-pages.yamlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
build-docs:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
1313
with:
1414
fetch-depth: 0
1515

16-
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
16+
- uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 #v4.4.1
1717
- run: |
1818
export JAVA_HOME=$JAVA_HOME_21_X64 # Remove when ubuntu-latest updates to Java 21
1919
./gradlew dokkatooGeneratePublicationHtml
2020
mkdir -p build/static
2121
cp -rf build/dokka/html build/static/kdoc
2222
23-
- uses: JamesIves/github-pages-deploy-action@94f3c658273cf92fb48ef99e5fbc02bd2dc642b2 #v4.6.3
23+
- uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 #v4.7.3
2424
with:
2525
branch: gh-pages # The branch the action should deploy to.
2626
folder: build/static # The folder the action should deploy.

β€Ž.github/workflows/publish-release.yamlβ€Ž

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ jobs:
1111
runs-on: macos-latest
1212

1313
steps:
14-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
15-
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
15+
- uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 #v4.4.1
1616
- run: |
17-
./gradlew librarianPublishToMavenCentral
17+
LIBRARIAN_RELEASE=true ./gradlew librarianPublishToMavenCentral
1818
env:
1919
LIBRARIAN_SONATYPE_PASSWORD: ${{ secrets.CENTRAL_PORTAL_PASSWORD }}
2020
LIBRARIAN_SONATYPE_USERNAME: ${{ secrets.CENTRAL_PORTAL_USERNAME }}
2121
LIBRARIAN_SIGNING_PRIVATE_KEY: ${{ secrets.GPG_KEY }}
2222
LIBRARIAN_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.GPG_KEY_PASSWORD }}
23-
GH_TOKEN: ${{ github.token }}

β€Ž.github/workflows/publish-snapshot.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: macos-latest
99

1010
steps:
11-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
12-
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
11+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
12+
- uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 #v4.4.1
1313
- run: |
1414
LIBRARIAN_VERSION_SHA1=$GITHUB_SHA ./gradlew librarianPublishToGcs
1515
./gradlew librarianPublishToSnapshots

β€Žbuild.gradle.ktsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44
id("base")
55
}
66
buildscript {
7+
78
dependencies {
89
classpath("gratatouille-build-logic:gratatouille-build-logic")
910
}

β€Žgradle/libs.versions.tomlβ€Ž

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ksp = "2.1.20-2.0.0"
33
kotlin = "2.1.20"
44
coroutines = "1.8.0"
55
kotlinpoet = "1.14.2"
6-
librarian = "0.0.8-SNAPSHOT-07cba857c7fb7a7edb50a020b42acd5578fc42bf"
6+
librarian = "0.0.10-SNAPSHOT-48478069e3d33d7a116b07674d29ba0a23bded77"
77
gratatouille = "0.0.10"
88

99
[libraries]
@@ -21,13 +21,12 @@ kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-
2121
kotlinpoet = { group = "com.squareup", name = "kotlinpoet", version.ref = "kotlinpoet" }
2222
kotlinpoet-ksp = { group = "com.squareup", name = "kotlinpoet-ksp", version.ref = "kotlinpoet" }
2323
librarian = { module = "com.gradleup.librarian:librarian-gradle-plugin", version.ref = "librarian" }
24+
nmcp = { module = "com.gradleup.nmcp:nmcp", version = "1.0.0-rc.1" }
2425
okio = "com.squareup.okio:okio:3.9.0"
2526
cast = "net.mbonnin.cast:cast:0.0.1"
2627
gratatouille-gradle-plugin = { module = "com.gradleup.gratatouille:gratatouille-gradle-plugin", version.ref = "gratatouille" }
27-
gratatouille-runtime = { module = "com.gradleup.gratatouille:gratatouille-core", version.ref = "gratatouille" }
2828

2929

3030
[plugins]
31-
librarian = { id = "com.gradleup.librarian", version.ref = "librarian" }
3231
kgp = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
3332
compat-patrouille = { id = "com.gradleup.compat.patrouille", version = "0.0.0" }

β€Žgratatouille-build-logic/build.gradle.ktsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
implementation(libs.kotlinx.coroutines.core)
1717
implementation(libs.buildkonfig)
1818
implementation(libs.librarian)
19+
implementation(libs.nmcp)
1920
implementation(libs.gratatouille.gradle.plugin)
2021
}
2122

β€Žlibrarian.root.propertiesβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ kotlin.compatibility=2.0.0
33

44
kdoc.olderVersions=
55

6-
sonatype.backend=Portal
7-
86
pom.groupId=com.gradleup.gratatouille
9-
pom.version=0.0.11-SNAPSHOT
7+
pom.version=0.1.0-SNAPSHOT
108
pom.description=Cook delicious Gradle plugins
119
pom.vcsUrl=https://github.com/GradleUp/gratatouille
1210
pom.developer=gratatouille authors

β€Žsettings.gradle.ktsβ€Ž

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ pluginManagement {
33
it.apply {
44
mavenCentral()
55
google()
6-
maven("https://storage.googleapis.com/gradleup/m2")
6+
}
7+
}
8+
repositories {
9+
maven("https://storage.googleapis.com/gradleup/m2") {
10+
content {
11+
includeGroup("com.gradleup.librarian")
12+
includeGroup("com.gradleup.nmcp")
13+
includeGroup("com.gradleup.gratatouille")
14+
}
715
}
816
}
917
}

0 commit comments

Comments
Β (0)