Skip to content

Commit 2124b12

Browse files
authored
Fix incorrect file reference in Actions (#237)
1 parent b00705d commit 2124b12

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ on:
1616
branches: [ "master" ]
1717
paths:
1818
- '**/*.java'
19-
- '**/*.gradle'
19+
- '**/*.gradle.kts'
2020
pull_request:
2121
branches: [ "master" ]
2222
paths:
2323
- '**/*.java'
24-
- '**/*.gradle'
24+
- '**/*.gradle.kts'
2525
schedule:
2626
- cron: '25 21 * * 0'
2727

.github/workflows/gradle-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
branches: [ "master" ]
66
paths:
77
- 'gradle/wrapper/**'
8-
- '**/*.gradle'
8+
- '**/*.gradle.kts'
99
- '**/*.java'
1010
- '**/gradle-build.yml'
1111
pull_request:
1212
branches: [ "master" ]
1313
types: [opened, synchronize, reopened]
1414
paths:
1515
- 'gradle/wrapper/**'
16-
- '**/*.gradle'
16+
- '**/*.gradle.kts'
1717
- '**/*.java'
1818
- '**/gradle-build.yml'
1919

@@ -40,7 +40,7 @@ jobs:
4040
- '**/*.java'
4141
build:
4242
- 'gradle/wrapper/**'
43-
- '**/*.gradle'
43+
- '**/*.gradle.kts'
4444
- '**/gradle-build.yml'
4545
4646
gradle-build:

0 commit comments

Comments
 (0)