Skip to content

Commit 4661bbd

Browse files
authored
Add Github workflow to update gradle (#342)
1 parent b2d0a2c commit 4661bbd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/gradle-update.yml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)