Skip to content

Commit c252421

Browse files
authored
Merge pull request #78 from xenit-eu/ACC-1924
ACC-1924: use fixed opa version in tests
2 parents a0c78ac + 248253c commit c252421

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,9 @@ jobs:
2525
ORG_GRADLE_PROJECT_sonatype_username: ${{ secrets.SONATYPE_S01_USERNAME }}
2626
ORG_GRADLE_PROJECT_sonatype_password: ${{ secrets.SONATYPE_S01_PASSWORD }}
2727
run: ./gradlew publish
28+
- name: Upload reports
29+
if: success() || failure()
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: reports-build
33+
path: '**/build/reports'

opa-async-java-client/src/test/java/com/contentgrid/opa/client/OpaClientIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
@Testcontainers
4141
class OpaClientIntegrationTests {
4242

43-
private static final DockerImageName OPA_IMAGE = DockerImageName.parse("openpolicyagent/opa");
43+
private static final DockerImageName OPA_IMAGE = DockerImageName.parse("openpolicyagent/opa:0.70.0");
4444
private static final int OPA_EXPOSED_PORT = 8181;
4545

4646
@Container

0 commit comments

Comments
 (0)