Skip to content

Commit 8e59d61

Browse files
chore: move Bouncy Castle dependency to test scope (#767)
* chore: install docker-compose * make bouncycastle test scope
1 parent 472b4df commit 8e59d61

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/test-and-deploy.yml

+5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
username: ${{ secrets.DOCKER_USERNAME }}
3232
password: ${{ secrets.DOCKER_AUTH_TOKEN }}
3333

34+
- name: Install Docker Compose
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y docker-compose
38+
3439
- name: Run Unit Tests
3540
run: make test-docker version=${{ matrix.java }}
3641

pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@
294294
<dependency>
295295
<groupId>org.bouncycastle</groupId>
296296
<artifactId>bcprov-jdk18on</artifactId>
297-
<version>1.76</version>
297+
<version>1.78.1</version>
298+
<scope>test</scope>
298299
</dependency>
299300
</dependencies>
300301
<reporting>
@@ -306,4 +307,4 @@
306307
</plugin>
307308
</plugins>
308309
</reporting>
309-
</project>
310+
</project>

0 commit comments

Comments
 (0)