Skip to content

Commit 5c9f7f9

Browse files
update dependencies
1 parent 17a944c commit 5c9f7f9

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343

4444
- name: Set up JDK
45-
uses: actions/setup-java@v4
45+
uses: actions/setup-java@v5
4646
with:
4747
distribution: 'temurin'
4848
java-version: '11'
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@v3
52+
uses: github/codeql-action/init@v4
5353
with:
5454
languages: ${{ matrix.language }}
5555
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@v3
63+
uses: github/codeql-action/autobuild@v4
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 https://git.io/JvXDl
@@ -74,4 +74,4 @@ jobs:
7474
# make release
7575

7676
- name: Perform CodeQL Analysis
77-
uses: github/codeql-action/analyze@v3
77+
uses: github/codeql-action/analyze@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up JDK 11
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
java-version: '11'
2222
distribution: 'temurin'
@@ -50,7 +50,7 @@ jobs:
5050
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
5151

5252
- name: Upload artifacts to GitHub Release
53-
uses: softprops/action-gh-release@v2
53+
uses: softprops/action-gh-release@v3
5454
with:
5555
files: |
5656
target/testingbotrest-*.jar

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Clone Repository
10-
uses: actions/checkout@v4
11-
- uses: actions/setup-java@v4
10+
uses: actions/checkout@v6
11+
- uses: actions/setup-java@v5
1212
with:
1313
distribution: 'temurin'
1414
java-version: '11'

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>com.google.code.gson</groupId>
5858
<artifactId>gson</artifactId>
59-
<version>2.10.1</version>
59+
<version>2.14.0</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>junit</groupId>
@@ -80,7 +80,7 @@
8080
<plugins>
8181
<plugin>
8282
<artifactId>maven-antrun-plugin</artifactId>
83-
<version>3.1.0</version>
83+
<version>3.2.0</version>
8484
<executions>
8585
<execution>
8686
<phase>generate-sources</phase>
@@ -149,7 +149,7 @@
149149
</plugin>
150150
<plugin>
151151
<artifactId>maven-compiler-plugin</artifactId>
152-
<version>3.10.1</version>
152+
<version>3.15.0</version>
153153
<configuration>
154154
<source>1.7</source>
155155
<target>1.7</target>
@@ -195,7 +195,7 @@
195195
<plugin>
196196
<groupId>org.apache.maven.plugins</groupId>
197197
<artifactId>maven-source-plugin</artifactId>
198-
<version>3.3.1</version>
198+
<version>3.4.0</version>
199199
<executions>
200200
<execution>
201201
<id>attach-sources</id>
@@ -208,7 +208,7 @@
208208
<plugin>
209209
<groupId>org.apache.maven.plugins</groupId>
210210
<artifactId>maven-javadoc-plugin</artifactId>
211-
<version>3.6.3</version>
211+
<version>3.12.0</version>
212212
<configuration>
213213
<source>8</source>
214214
<detectJavaApiLink>false</detectJavaApiLink>

0 commit comments

Comments
 (0)