Skip to content

Commit a535f8d

Browse files
committed
Update github-api to pick up secondary rate limit improvements
1 parent 1d61aa8 commit a535f8d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

site-validation/bad-image-issue.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
//JAVA 17+
44

5-
//DEPS org.kohsuke:github-api:1.321
5+
//DEPS org.kohsuke:github-api:1.322
66
//DEPS info.picocli:picocli:4.2.0
77

88
import com.fasterxml.jackson.core.JsonProcessingException;
@@ -144,7 +144,7 @@ private void processBadImage(GitHub github, BadImage link) {
144144
%s image: %s
145145
146146
The problem image was found on these artifacts: %s
147-
147+
148148
Affected pages are
149149
- %s
150150
@@ -183,12 +183,12 @@ private List<BadImage> readTestOutputFile() throws IOException {
183183
if (Files.exists(filePath)) {
184184
try {
185185
return Arrays.asList(new ObjectMapper().readValue(filePath.toFile(), BadImage[].class));
186-
} catch (JsonProcessingException e) {
187-
throw new RuntimeException(e);
188-
}
189-
} else {
190-
return Collections.emptyList();
186+
} catch (JsonProcessingException e) {
187+
throw new RuntimeException(e);
191188
}
189+
} else {
190+
return Collections.emptyList();
191+
}
192192
}
193193

194194
public static void main(String... args) {

site-validation/dead-link-issue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
//JAVA 17+
2020

21-
//DEPS org.kohsuke:github-api:1.321
21+
//DEPS org.kohsuke:github-api:1.322
2222
//DEPS info.picocli:picocli:4.2.0
2323

2424
import com.fasterxml.jackson.core.JsonProcessingException;

0 commit comments

Comments
 (0)