Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ jobs:
ORG_GRADLE_PROJECT_sonatype_username: ${{ secrets.SONATYPE_S01_USERNAME }}
ORG_GRADLE_PROJECT_sonatype_password: ${{ secrets.SONATYPE_S01_PASSWORD }}
run: ./gradlew publish
- name: Upload reports
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: reports-build
path: '**/build/reports'
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
@Testcontainers
class OpaClientIntegrationTests {

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

@Container
Expand Down