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 b2d0a2c commit 4661bbdCopy full SHA for 4661bbd
.github/workflows/gradle-update.yml
@@ -0,0 +1,21 @@
1
+name: Update Gradle Wrapper
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 0 * * MON"
7
8
+env:
9
+ ARTIFACTORY_USER: ${{ secrets.CI_JFROG_ACCESS_TOKEN_USER }}
10
+ ARTIFACTORY_API_KEY: ${{ secrets.ORG_CI_JFROG_ACCESS_TOKEN }}
11
12
+jobs:
13
+ update-gradle-wrapper:
14
+ name: "Update"
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Update Gradle Wrapper
19
+ uses: gradle-update/update-gradle-wrapper-action@v1
20
+ with:
21
+ repo-token: ${{ secrets.MOIA_PIPELINE_PAT }}
0 commit comments