Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ed1f974

Browse files
authoredMar 2, 2025··
Merge branch 'main' into immutable-descopesession
2 parents 7f7fcc3 + 589486f commit ed1f974

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎.github/workflows/detekt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
)" > ${{ github.workspace }}/detekt.sarif.json
5252
5353
# Uploads results to GitHub repository using the upload-sarif action
54-
- uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
54+
- uses: github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
5555
with:
5656
# Path to SARIF file relative to the root of the repository
5757
sarif_file: ${{ github.workspace }}/detekt.sarif.json

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
33
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
4-
id "com.android.library" version "8.5.2" apply false
4+
id "com.android.library" version "8.8.2" apply false
55
id "org.jetbrains.kotlin.android" version "1.9.25" apply false
66
}
77

‎descopesdk/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ plugins {
77

88
android {
99
namespace "com.descope"
10-
compileSdk 34
10+
compileSdk 35
1111

1212
defaultConfig {
1313
minSdk 24
14-
targetSdk 34
14+
targetSdk 35
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
consumerProguardFiles "consumer-rules.pro"
@@ -41,12 +41,12 @@ android {
4141

4242
dependencies {
4343
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1"
44-
implementation "androidx.lifecycle:lifecycle-common:2.8.4"
45-
implementation "androidx.lifecycle:lifecycle-process:2.8.4"
44+
implementation "androidx.lifecycle:lifecycle-common:2.8.7"
45+
implementation "androidx.lifecycle:lifecycle-process:2.8.7"
4646
implementation "androidx.browser:browser:1.8.0"
4747
implementation "androidx.security:security-crypto:1.0.0"
48-
implementation "androidx.credentials:credentials:1.2.2"
49-
implementation "androidx.credentials:credentials-play-services-auth:1.2.2"
48+
implementation "androidx.credentials:credentials:1.3.0"
49+
implementation "androidx.credentials:credentials-play-services-auth:1.3.0"
5050
implementation "com.google.android.libraries.identity.googleid:googleid:1.1.1"
5151

5252
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1"

0 commit comments

Comments
 (0)
Please sign in to comment.