Skip to content
Closed
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: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
"${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager" "cmake;3.22.1"

- name: Initialize CodeQL
uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # v4
uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4
with:
languages: c-cpp
build-mode: manual
Expand All @@ -62,7 +62,7 @@ jobs:
--stacktrace

- name: Analyze C/C++
uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # v4
uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4
with:
category: "/language:c-cpp"

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
run: chmod +x gradlew

- name: Initialize CodeQL
uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # v4
uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4
with:
languages: java-kotlin
build-mode: manual
Expand All @@ -116,6 +116,6 @@ jobs:
--stacktrace

- name: Analyze Kotlin
uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # v4
uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4
with:
category: "/language:java-kotlin"
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ android {

dependencies {
implementation project(':protocol')
implementation 'androidx.core:core:1.17.0'
implementation 'androidx.core:core:1.19.0'
implementation 'androidx.recyclerview:recyclerview:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.7.0'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.20-Beta1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.20-RC'
}
}

Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ pluginManagement {
// plugin classpath outside of a normal buildscript {} block, so this is forced
// here rather than in a project build.gradle.
def forcedSecureVersions = [
'org.bouncycastle:bcprov-jdk18on:1.85',
'org.bouncycastle:bcpkix-jdk18on:1.85',
'org.bouncycastle:bcutil-jdk18on:1.85',
'org.bouncycastle:bcprov-jdk18on:1.85.2',
'org.bouncycastle:bcpkix-jdk18on:1.85.2',
'org.bouncycastle:bcutil-jdk18on:1.85.2',
'org.bitbucket.b_c:jose4j:0.9.6',
'org.jdom:jdom2:2.0.6.1',
'org.apache.commons:commons-lang3:3.20.0',
Expand Down
Loading