We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a95dba commit 5edd518Copy full SHA for 5edd518
.github/workflows/unmanaged_dependency_check.yaml
@@ -0,0 +1,22 @@
1
+on:
2
+ pull_request:
3
+name: Unmanaged dependency check
4
+jobs:
5
+ unmanaged_dependency_check:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - uses: actions/setup-java@v3
10
+ with:
11
+ distribution: temurin
12
+ java-version: 11
13
+ - name: Install modules
14
+ shell: bash
15
+ run: |
16
+ # No argument to build.sh installs the modules in local Maven
17
+ # repository
18
+ .kokoro/build.sh
19
+ - name: Unmanaged dependency check
20
+ uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@unmanaged-dependencies-check-latest
21
22
+ bom-path: google-cloud-spanner-bom/pom.xml
0 commit comments