From 94b918999d323bc96efa23b871939b730e67c7a9 Mon Sep 17 00:00:00 2001 From: cwisniew Date: Fri, 24 Nov 2023 00:37:14 +1030 Subject: [PATCH 1/2] Add dependencies calc action --- .github/workflows/dependencies.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dependencies.yml diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml new file mode 100644 index 0000000000..a75ea0c747 --- /dev/null +++ b/.github/workflows/dependencies.yml @@ -0,0 +1,18 @@ +name: build +on: + push: + branches: + - develop # run the action on your projects default branch + +jobs: + build: + name: Dependencies + runs-on: ubuntu-latest + permissions: # The Dependency Submission API requires write permission + contents: write + steps: + - name: 'Checkout Repository' + uses: actions/checkout@v3 + + - name: Run snapshot action + uses: mikepenz/gradle-dependency-submission@{latest} \ No newline at end of file From 36785abf7a39843d4ce1afd718a67d0717aa2a69 Mon Sep 17 00:00:00 2001 From: cwisniew Date: Fri, 24 Nov 2023 00:52:41 +1030 Subject: [PATCH 2/2] Add dependencies calc action --- .github/workflows/dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index a75ea0c747..dc50a787fd 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -15,4 +15,4 @@ jobs: uses: actions/checkout@v3 - name: Run snapshot action - uses: mikepenz/gradle-dependency-submission@{latest} \ No newline at end of file + uses: mikepenz/gradle-dependency-submission@v0.9.1 \ No newline at end of file