Skip to content

Commit 930e9f3

Browse files
authored
Remove unnecessary nullability (#77)
1 parent 38a64d1 commit 930e9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private fun listAllActionManifestFilesInRepo(): Stream<Path> {
225225
return Files.walk(Path("typings")).filter { it.name == "action-types.yml" }
226226
}
227227

228-
private fun listAffectedActionManifestFiles(sha: String, baseRef: String?): Stream<Path> {
228+
private fun listAffectedActionManifestFiles(sha: String, baseRef: String): Stream<Path> {
229229
val typings = try {
230230
KGit.open(File(".")).use { git ->
231231
git.fetch {

0 commit comments

Comments
 (0)