Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
assignees:
- "hfhbd"
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "daily"
assignees:
- "hfhbd"
7 changes: 7 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,19 @@ jobs:
environment:
name: CD

permissions:
contents: read

steps:
- name: Set environment for version
run: long="${{ github.ref }}"; version=${long#"refs/tags/v"}; echo "version=${version}" >> $GITHUB_OUTPUT
id: version
- uses: actions/checkout@v6
- uses: gradle/actions/setup-gradle@v5
with:
build-scan-publish: true
build-scan-terms-of-use-url: 'https://gradle.com/terms-of-service'
build-scan-terms-of-use-agree: 'yes'

- name: Publish
run: ./gradlew -Pversion=${{ steps.version.outputs.version }} publish
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ jobs:
build:
runs-on: ubuntu-latest

permissions:
contents: read

steps:
- uses: actions/checkout@v6
- uses: gradle/actions/setup-gradle@v5
with:
build-scan-publish: true
build-scan-terms-of-use-url: 'https://gradle.com/terms-of-service'
build-scan-terms-of-use-agree: 'yes'

- name: Build with Gradle
run: ./gradlew build
4 changes: 4 additions & 0 deletions .github/workflows/codeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v6
- uses: gradle/actions/setup-gradle@v5
with:
build-scan-publish: true
build-scan-terms-of-use-url: 'https://gradle.com/terms-of-service'
build-scan-terms-of-use-agree: 'yes'

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ jobs:
uses: gradle/actions/dependency-submission@v5

dependency-review:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
needs: dependency-submission
if: github.event_name == 'pull_request'

permissions: {}

steps:
- name: Perform dependency review
uses: actions/dependency-review-action@v4
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
exports app.softwork.cloudkitclient.values;

requires kotlin.stdlib;
requires transitive io.ktor.client.java;
requires transitive kotlinx.serialization.json;
}
1 change: 0 additions & 1 deletion gradle/build-logic/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
gradlePluginPortal()
}
versionCatalogs.register("libs") {
from(files("../libs.versions.toml"))
Expand Down
13 changes: 0 additions & 13 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,6 @@ pluginManagement {
plugins {
id("MyRepos")
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
id("com.gradle.develocity") version "4.2"
}

develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/terms-of-service")
termsOfUseAgree.set("yes")
val isCI = providers.environmentVariable("CI").isPresent
publishing {
onlyIf { isCI }
}
tag("CI")
}
}

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
Expand Down
Loading