Skip to content

Commit b4b1d1a

Browse files
committed
Update dependencies
1 parent 1b86bf6 commit b4b1d1a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@v1
35+
uses: github/codeql-action/init@v2
3636
with:
3737
languages: ${{ matrix.language }}
3838
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -43,7 +43,7 @@ jobs:
4343
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4444
# If this step fails, then you should remove it and run the build manually (see below)
4545
- name: Autobuild
46-
uses: github/codeql-action/autobuild@v1
46+
uses: github/codeql-action/autobuild@v2
4747

4848
# ℹ️ Command-line programs to run using the OS shell.
4949
# 📚 https://git.io/JvXDl
@@ -57,4 +57,4 @@ jobs:
5757
# make release
5858

5959
- name: Perform CodeQL Analysis
60-
uses: github/codeql-action/analyze@v1
60+
uses: github/codeql-action/analyze@v2

lintchecks/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ apply plugin: 'com.android.lint'
33

44
dependencies {
55
// If the Gradle plugin version is X.Y.Z, then the Lint library version is X+23.Y.Z
6-
compileOnly "com.android.tools.lint:lint-api:30.1.1"
7-
compileOnly "com.android.tools.lint:lint-checks:30.1.1"
6+
compileOnly 'com.android.tools.lint:lint-api:30.3.0'
7+
compileOnly 'com.android.tools.lint:lint-checks:30.3.0'
88
}
99

1010
java {

simpledialogfragments/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 31
4+
compileSdkVersion 32
55

66
defaultConfig {
77
minSdkVersion 14
8-
targetSdkVersion 31
8+
targetSdkVersion 32
99
versionCode rootProject.ext['VERSION_NR']
1010
versionName rootProject.ext['VERSION']
1111
}
@@ -28,7 +28,7 @@ dependencies {
2828
lintPublish project(':lintchecks')
2929

3030
testImplementation 'junit:junit:4.13.2'
31-
implementation 'androidx.appcompat:appcompat:1.4.2'
31+
implementation 'androidx.appcompat:appcompat:1.5.1'
3232
implementation 'com.google.android.material:material:1.6.1'
3333
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
3434
implementation 'com.alimuzaffar.lib:pinentryedittext:2.0.6'

testApp/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
}
55

66
android {
7-
compileSdkVersion 31
7+
compileSdkVersion 32
88

99
defaultConfig {
1010
applicationId 'eltos.simpledialogfragments.test'
1111
minSdkVersion 14
12-
targetSdkVersion 31
12+
targetSdkVersion 32
1313
versionCode rootProject.ext['VERSION_NR']
1414
versionName rootProject.ext['VERSION']
1515
}
@@ -35,10 +35,10 @@ repositories {
3535

3636
dependencies {
3737
testImplementation 'junit:junit:4.13.2'
38-
implementation 'androidx.appcompat:appcompat:1.4.2'
38+
implementation 'androidx.appcompat:appcompat:1.5.1'
3939
implementation 'com.google.android.material:material:1.6.1'
4040
implementation 'com.google.android.flexbox:flexbox:3.0.0'
41-
implementation 'com.google.zxing:core:3.3.3'
41+
implementation 'com.google.zxing:core:3.5.0'
4242

4343
// sonatype maven
4444
//implementation 'io.github.eltos:simpledialogfragments:3.5.1'

0 commit comments

Comments
 (0)