Skip to content

Commit

Permalink
chore: move Bouncy Castle dependency to test scope (#767)
Browse files Browse the repository at this point in the history
* chore: install docker-compose
* make bouncycastle test scope
  • Loading branch information
tiwarishubham635 authored Sep 10, 2024
1 parent 472b4df commit 8e59d61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_AUTH_TOKEN }}

- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Run Unit Tests
run: make test-docker version=${{ matrix.java }}

Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.76</version>
<version>1.78.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
Expand All @@ -306,4 +307,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>

0 comments on commit 8e59d61

Please sign in to comment.