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
8 changes: 1 addition & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,4 @@ updates:
directory: "/"
schedule:
interval: "daily"
target-branch: "main"

- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "daily"
target-branch: "publishing"
target-branch: "main"
30 changes: 30 additions & 0 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Dependency Submission

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

permissions:
contents: write

jobs:
dependency-submission:
runs-on: macos-latest
steps:
- name: Checkout sources
uses: actions/checkout@v7.0.1

- name: Set up Java
uses: actions/setup-java@v5.7.0
with:
distribution: temurin
java-version: '25'

# Updated to 16.3 to meet Kotlin 2.2.10 requirements
- name: Set up Xcode version
run: sudo xcode-select -s /Applications/Xcode_26.2.app/Contents/Developer

- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v6
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ replay_pid*
.gradle/
docs/
build/
*/build/
*/build/
kotlin-js-store/
kotlin-js-store/*
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]
logging = "0.3.0"
logging = "0.3.1"
build-sdk-compile = "37"
build-sdk-min = "24"
kotlin = "2.4.10"
agp = "9.3.0" # switch to AGP 9.3.0 when released (switched early due to android toolchain
agp = "9.4.0-rc01" #"9.3.1"
bcv = "0.18.1"
dokka = "2.2.0"
kover = "0.9.8"
kover = "0.9.9"
maven-publish = "0.37.0"

[libraries]
Expand Down
Loading