Skip to content

Commit cce61a5

Browse files
committed
Update Github action plugins
1 parent 9a551f5 commit cce61a5

2 files changed

Lines changed: 17 additions & 4 deletions

File tree

.github/workflows/ci.yml

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

1717
steps:
1818
- name: Check out repository code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up JDK 21
22-
uses: actions/setup-java@v3
22+
uses: actions/setup-java@v4
2323
with:
2424
java-version: '21'
2525
distribution: 'adopt'
@@ -29,7 +29,7 @@ jobs:
2929
run: mvn clean install
3030

3131
- name: Upload coverage reports to Codecov
32-
uses: codecov/codecov-action@v3
32+
uses: codecov/codecov-action@v5
3333
if: runner.os == 'Windows'
3434
env:
3535
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.squareup.okhttp3</groupId>
5656
<artifactId>okhttp</artifactId>
57-
<version>4.10.0</version>
57+
<version>4.12.0</version>
5858
</dependency>
5959

6060
<dependency>
@@ -70,6 +70,19 @@
7070
<scope>test</scope>
7171
</dependency>
7272

73+
<dependency>
74+
<groupId>org.junit.platform</groupId>
75+
<artifactId>junit-platform-launcher</artifactId>
76+
<version>1.13.1</version>
77+
<scope>test</scope>
78+
<exclusions>
79+
<exclusion>
80+
<artifactId>junit-platform-engine</artifactId>
81+
<groupId>org.junit.platform</groupId>
82+
</exclusion>
83+
</exclusions>
84+
</dependency>
85+
7386
<dependency>
7487
<groupId>org.assertj</groupId>
7588
<artifactId>assertj-core</artifactId>

0 commit comments

Comments
 (0)