Skip to content

Commit acdfda5

Browse files
committed
Update 'plugin-publish-conventions' to 0.6 / align github actions
1 parent f8b9a65 commit acdfda5

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/ci-build.yaml renamed to .github/workflows/ci-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
with:
1212
distribution: temurin
1313
java-version: 11
14-
- name: gradle build
15-
id: gradle
14+
- name: Set up Gradle
1615
uses: gradle/[email protected]
17-
with:
18-
arguments: build
16+
- run: "./gradlew build"

build.gradle.kts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("groovy")
3-
id("org.gradlex.internal.plugin-publish-conventions") version "0.5"
3+
id("org.gradlex.internal.plugin-publish-conventions") version "0.6"
44
}
55

66
group = "org.gradlex"
@@ -31,11 +31,6 @@ pluginPublishConventions {
3131
}
3232
}
3333

34-
// TODO This needs to be included in org.gradlex.internal.plugin-publish-conventions
35-
signing {
36-
useInMemoryPgpKeys(providers.environmentVariable("SIGNING_KEY").orNull, providers.environmentVariable("SIGNING_PASSPHRASE").orNull)
37-
}
38-
3934
tasks.test {
4035
description = "Runs tests against the Gradle version the plugin is built with"
4136
classpath = sourceSets.test.get().runtimeClasspath

0 commit comments

Comments
 (0)