File tree Expand file tree Collapse file tree 8 files changed +19
-11
lines changed Expand file tree Collapse file tree 8 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 7
7
# This workflow contains a single job called "build"
8
8
build :
9
9
# The type of runner that the job will run on
10
- runs-on : ubuntu-20.04
10
+ runs-on : ubuntu-latest
11
11
12
12
# Steps represent a sequence of tasks that will be executed as part of the job
13
13
steps :
29
29
- name : Generate cache key
30
30
run : ./scripts/checksum.sh ./ checksum.txt
31
31
32
- - uses : actions/cache@v4.0.2
32
+ - uses : actions/cache@v4
33
33
with :
34
34
path : |
35
35
~/.gradle/caches/modules-*
Original file line number Diff line number Diff line change 8
8
# This workflow contains a single job called "build"
9
9
build :
10
10
# The type of runner that the job will run on
11
- runs-on : ubuntu-20.04
11
+ runs-on : ubuntu-latest
12
12
13
13
# Steps represent a sequence of tasks that will be executed as part of the job
14
14
steps :
35
35
- name : Generate cache key
36
36
run : ./scripts/checksum.sh ./ checksum.txt
37
37
38
- - uses : actions/cache@v4.0.2
38
+ - uses : actions/cache@v4
39
39
with :
40
40
path : |
41
41
~/.gradle/caches/modules-*
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
update_draft_release :
12
- runs-on : ubuntu-20.04
12
+ runs-on : ubuntu-latest
13
13
steps :
14
14
-
uses :
release-drafter/[email protected]
15
15
with :
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
build :
10
- runs-on : ubuntu-20.04
10
+ runs-on : ubuntu-latest
11
11
12
12
# Steps represent a sequence of tasks that will be executed as part of the job
13
13
steps :
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ detekt {
12
12
}
13
13
14
14
android {
15
- compileSdk = 34
15
+ compileSdk = 36
16
16
17
17
defaultConfig {
18
18
applicationId = " se.warting.signaturepad"
19
19
minSdk = 21
20
- targetSdk = 34
20
+ targetSdk = 36
21
21
versionCode = 1
22
22
versionName = " 1.0"
23
23
@@ -65,6 +65,8 @@ android {
65
65
disable.add(" LintBaseline" )
66
66
disable.add(" GradleDependency" )
67
67
disable.add(" LogConditional" )
68
+ disable.add(" AndroidGradlePluginVersion" )
69
+ disable.add(" NewerVersionAvailable" )
68
70
checkDependencies = true
69
71
checkGeneratedSources = false
70
72
sarifOutput = file(" ../lint-results-lib.sarif" )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ group = PUBLISH_GROUP_ID
61
61
version = PUBLISH_VERSION
62
62
63
63
android {
64
- compileSdk = 34
64
+ compileSdk = 36
65
65
66
66
defaultConfig {
67
67
minSdk = 21
@@ -97,6 +97,8 @@ android {
97
97
abortOnError = true
98
98
disable.add(" LintBaseline" )
99
99
disable.add(" GradleDependency" )
100
+ disable.add(" AndroidGradlePluginVersion" )
101
+ disable.add(" NewerVersionAvailable" )
100
102
checkDependencies = true
101
103
checkGeneratedSources = false
102
104
sarifOutput = file(" ../lint-results-signature-core.sarif" )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ group = PUBLISH_GROUP_ID
60
60
version = PUBLISH_VERSION
61
61
62
62
android {
63
- compileSdk = 34
63
+ compileSdk = 36
64
64
65
65
defaultConfig {
66
66
minSdk = 21
@@ -96,6 +96,8 @@ android {
96
96
abortOnError = true
97
97
disable.add(" LintBaseline" )
98
98
disable.add(" GradleDependency" )
99
+ disable.add(" AndroidGradlePluginVersion" )
100
+ disable.add(" NewerVersionAvailable" )
99
101
checkDependencies = true
100
102
checkGeneratedSources = false
101
103
sarifOutput = file(" ../lint-results-signature-pad.sarif" )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ group = PUBLISH_GROUP_ID
60
60
version = PUBLISH_VERSION
61
61
62
62
android {
63
- compileSdk = 34
63
+ compileSdk = 36
64
64
65
65
defaultConfig {
66
66
minSdk = 21
@@ -109,6 +109,8 @@ android {
109
109
abortOnError = true
110
110
disable.add(" LintBaseline" )
111
111
disable.add(" GradleDependency" )
112
+ disable.add(" AndroidGradlePluginVersion" )
113
+ disable.add(" NewerVersionAvailable" )
112
114
checkDependencies = true
113
115
checkGeneratedSources = false
114
116
sarifOutput = file(" ../lint-results-signature-view.sarif" )
You can’t perform that action at this time.
0 commit comments