Skip to content

Commit 7a1a374

Browse files
Bump the lib-and-app group across 1 directory with 5 updates (#91)
* Bump the lib-and-app group across 1 directory with 5 updates Bumps the lib-and-app group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | androidx.activity:activity-compose | `1.12.0` | `1.12.2` | | androidx.compose:compose-bom | `2025.11.01` | `2025.12.01` | | [io.mockk:mockk-android](https://github.com/mockk/mockk) | `1.14.6` | `1.14.7` | | com.android.application | `8.13.1` | `8.13.2` | | com.android.library | `8.13.1` | `8.13.2` | Updates `androidx.activity:activity-compose` from 1.12.0 to 1.12.2 Updates `androidx.compose:compose-bom` from 2025.11.01 to 2025.12.01 Updates `io.mockk:mockk-android` from 1.14.6 to 1.14.7 - [Release notes](https://github.com/mockk/mockk/releases) - [Commits](mockk/mockk@1.14.6...1.14.7) Updates `com.android.application` from 8.13.1 to 8.13.2 Updates `com.android.library` from 8.13.1 to 8.13.2 Updates `com.android.library` from 8.13.1 to 8.13.2 --- updated-dependencies: - dependency-name: androidx.activity:activity-compose dependency-version: 1.12.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: lib-and-app - dependency-name: androidx.compose:compose-bom dependency-version: 2025.12.01 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: lib-and-app - dependency-name: io.mockk:mockk-android dependency-version: 1.14.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: lib-and-app - dependency-name: com.android.application dependency-version: 8.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: lib-and-app - dependency-name: com.android.library dependency-version: 8.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: lib-and-app - dependency-name: com.android.library dependency-version: 8.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: lib-and-app ... Signed-off-by: dependabot[bot] <support@github.com> * Don't require SDK 26 (ignore mockk requirement) * Use CodeQL autobuild --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ricki Hirner <hirner@bitfire.at>
1 parent ef3e711 commit 7a1a374

3 files changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949

5050
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
52-
# - name: Autobuild
53-
# uses: github/codeql-action/autobuild@v2
52+
- name: Autobuild
53+
uses: github/codeql-action/autobuild@v4
5454

55-
- name: Build
56-
run: ./gradlew --no-daemon --configuration-cache --build-cache lib:assemble
55+
#- name: Build
56+
# run: ./gradlew --no-daemon --configuration-cache lib:assemble
5757

5858
- name: Perform CodeQL Analysis
5959
uses: github/codeql-action/analyze@v4

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
2-
agp = "8.13.1"
3-
androidx-activityCompose = "1.12.0"
2+
agp = "8.13.2"
3+
androidx-activityCompose = "1.12.2"
44
androidx-appcompat = "1.7.1"
55
androidx-core = "1.17.0"
66
androidx-lifecycle = "2.10.0"
77
androidx-test-core = "1.7.0"
88
androidx-test-runner = "1.7.0"
99
androidx-test-rules = "1.7.0"
1010
conscrypt = "2.5.3"
11-
compose-bom = "2025.11.01"
11+
compose-bom = "2025.12.01"
1212
dokka = "2.1.0"
1313
junit = "4.13.2"
1414
kotlin = "2.2.21"
15-
mockk = "1.14.6"
15+
mockk = "1.14.7"
1616
okhttp = "5.3.2"
1717

1818
[libraries]
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools">
34

45
<uses-permission android:name="android.permission.INTERNET"/>
56

7+
<!--
8+
Since Mockk 1.14.7 it's required to use minSdk 26. We use 23 (because DAVx5 is still on 24), so override for tests.
9+
-->
10+
<uses-sdk tools:overrideLibrary="io.mockk.android,io.mockk.proxy.android" />
11+
612
</manifest>

0 commit comments

Comments
 (0)