├── .editorconfig ├── .github ├── renovate.json └── workflows │ └── main.yml ├── .gitignore ├── .java-version ├── LICENSE ├── Readme.md ├── action.yml ├── entrypoint.ps1 ├── entrypoint.sh └── testproject ├── .gitattributes ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .kotlin 3 | -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/Readme.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/entrypoint.ps1 -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /testproject/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/.gitattributes -------------------------------------------------------------------------------- /testproject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/.gitignore -------------------------------------------------------------------------------- /testproject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/build.gradle -------------------------------------------------------------------------------- /testproject/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/gradle.properties -------------------------------------------------------------------------------- /testproject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testproject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /testproject/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/gradlew -------------------------------------------------------------------------------- /testproject/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/gradlew.bat -------------------------------------------------------------------------------- /testproject/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usefulness/dependency-tree-diff-action/HEAD/testproject/settings.gradle --------------------------------------------------------------------------------