Skip to content

Commit e77da60

Browse files
committed
Merge branch 'master' into jira-link
2 parents 7479fb5 + 2ff8704 commit e77da60

21 files changed

+34
-70
lines changed

.github/workflows/ci-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# Disabling shallow clone is recommended for improving relevancy of reporting with SonarCloud
1919
fetch-depth: 0
2020
- name: Set up JDK 1.8
21-
uses: actions/setup-java@v3
21+
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'adopt'
2424
java-version: 8
@@ -33,7 +33,7 @@ jobs:
3333
ZENDESK_JAVA_CLIENT_TEST_REQUESTER_EMAIL: ${{ secrets.ZENDESK_JAVA_CLIENT_TEST_REQUESTER_EMAIL }}
3434
ZENDESK_JAVA_CLIENT_TEST_REQUESTER_NAME: ${{ secrets.ZENDESK_JAVA_CLIENT_TEST_REQUESTER_NAME }}
3535
- name: Set up JDK 11
36-
uses: actions/setup-java@v3
36+
uses: actions/setup-java@v4
3737
with:
3838
distribution: 'adopt'
3939
java-version: 11

.github/workflows/ci-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# Disabling shallow clone is recommended for improving relevancy of reporting with SonarCloud
1919
fetch-depth: 0
2020
- name: Set up JDK 1.8
21-
uses: actions/setup-java@v3
21+
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'adopt'
2424
java-version: 8

.github/workflows/close-stale-items.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
default:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v8
10+
- uses: actions/stale@v9
1111
with:
1212
repo-token: ${{ secrets.GITHUB_TOKEN }}
1313
only-pr-labels: 'needs-fix'

.github/workflows/codeql-analysis.yml

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

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

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v2
71+
uses: github/codeql-action/analyze@v3

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@
9999
<dependency>
100100
<groupId>com.fasterxml.jackson</groupId>
101101
<artifactId>jackson-bom</artifactId>
102-
<version>2.15.3</version>
102+
<version>2.16.1</version>
103103
<type>pom</type>
104104
<scope>import</scope>
105105
</dependency>
106106
<dependency>
107107
<groupId>io.netty</groupId>
108108
<artifactId>netty-bom</artifactId>
109-
<version>4.1.100.Final</version>
109+
<version>4.1.105.Final</version>
110110
<type>pom</type>
111111
<scope>import</scope>
112112
</dependency>
@@ -117,7 +117,7 @@
117117
<dependency>
118118
<groupId>org.slf4j</groupId>
119119
<artifactId>slf4j-api</artifactId>
120-
<version>2.0.9</version>
120+
<version>2.0.11</version>
121121
</dependency>
122122
<dependency>
123123
<groupId>org.asynchttpclient</groupId>
@@ -152,7 +152,7 @@
152152
<dependency>
153153
<groupId>org.slf4j</groupId>
154154
<artifactId>slf4j-simple</artifactId>
155-
<version>2.0.9</version>
155+
<version>2.0.11</version>
156156
<scope>test</scope>
157157
</dependency>
158158
<dependency>
@@ -165,7 +165,7 @@
165165
<groupId>org.assertj</groupId>
166166
<artifactId>assertj-core</artifactId>
167167
<!-- use 2.9.0 for Java 7 projects -->
168-
<version>3.24.2</version>
168+
<version>3.25.1</version>
169169
<scope>test</scope>
170170
</dependency>
171171
<dependency>

src/main/java/org/zendesk/client/v2/Zendesk.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2361,9 +2361,7 @@ public <T extends SearchResultEntity> Iterable<T> getSearchResults(Class<T> type
23612361
return getSearchResults(type, query, Collections.emptyMap());
23622362
}
23632363

2364-
/**
2365-
* @deprecated Use {@link #getSearchResults(Class, String, Map)} instead.
2366-
*/
2364+
/** @deprecated Use {@link #getSearchResults(Class, String, Map)} instead. */
23672365
@Deprecated
23682366
public <T extends SearchResultEntity> Iterable<T> getSearchResults(
23692367
Class<T> type, String query, String params) {
@@ -2833,9 +2831,7 @@ public Locales listHelpCenterLocales() {
28332831
return complete(submit(req("GET", cnst("/help_center/locales.json")), handle(Locales.class)));
28342832
}
28352833

2836-
/**
2837-
* @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead
2838-
*/
2834+
/** @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead */
28392835
@Deprecated
28402836
public List<String> getHelpCenterLocales() {
28412837
return listHelpCenterLocales().getLocales();

src/main/java/org/zendesk/client/v2/model/Condition.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
import java.io.Serializable;
44

5-
/**
6-
* @author Sandeep Kaul ([email protected])
7-
*/
5+
/** @author Sandeep Kaul ([email protected]) */
86
public class Condition implements Serializable {
97

108
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Conditions.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
import java.util.ArrayList;
55
import java.util.List;
66

7-
/**
8-
* @author Sandeep Kaul([email protected])
9-
*/
7+
/** @author Sandeep Kaul([email protected]) */
108
public class Conditions implements Serializable {
119

1210
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Metric.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
import java.io.Serializable;
55
import java.util.Date;
66

7-
/**
8-
* @author jyrij
9-
*/
7+
/** @author jyrij */
108
public class Metric implements Serializable {
119

1210
private static final long serialVersionUID = -847290591071406141L;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
package org.zendesk.client.v2.model;
22

3-
/**
4-
* @author Stephen Connolly
5-
*/
3+
/** @author Stephen Connolly */
64
public interface SearchResultEntity {}

0 commit comments

Comments
 (0)