Skip to content
Open
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
34 changes: 34 additions & 0 deletions .github/workflows/dirty-waters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: dirty-waters

on:
pull_request:
push:
branches: [ master ]
workflow_dispatch:
inputs:
ignore_cache:
description: "Ignore the repository cache for this run"
required: false
default: "false"

jobs:
dirty-waters:
runs-on:
ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup JDK17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Dirty Waters Analysis
uses: chains-project/dirty-waters-action@9e8ad8f78240019718be9151202af3037ff861d0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: maven
project_repo: ${{ github.repository }}
latest_commit_sha: ${{ github.sha }}
github_event_before: ${{ github.event.before }}