-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (48 loc) · 1.4 KB
/
dependency_report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Submit dependencies
on:
push:
branches:
- main
permissions:
contents: write
jobs:
networktime:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/submitDependencyReport
with:
module: networktime
github-token: ${{ github.token }}
networktime-singletons:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/submitDependencyReport
with:
module: networktime-singletons
github-token: ${{ github.token }}
samples-multiplatform-kotlin-android:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/submitDependencyReport
with:
module: samples-multiplatform-kotlin-android
github-token: ${{ github.token }}
samples-multiplatform-kotlin-jvm:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/submitDependencyReport
with:
module: samples-multiplatform-kotlin-jvm
github-token: ${{ github.token }}
samples-multiplatform-kotlin-shared:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/submitDependencyReport
with:
module: samples-multiplatform-kotlin-shared
github-token: ${{ github.token }}