Skip to content

Commit 68b04ca

Browse files
authored
Merge branch 'cloudbees-oss:master' into master
2 parents eaba4b4 + 8fdc7a2 commit 68b04ca

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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: 4 additions & 4 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.104.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>

0 commit comments

Comments
 (0)