-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (65 loc) · 2.12 KB
/
update-gradle-wrapper.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Update Gradle Wrapper
on:
schedule:
- cron: 0 3 3 * *
env:
JAVA_VERSION: 17
JAVA_PACKAGE: jdk
JAVA_ARCH: x64
JAVA_DISTRO: temurin
jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- id: checkout
name: Clone Git Repository
uses: actions/checkout@v4
- id: java
name: Setup Java
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
java-package: ${{ env.JAVA_PACKAGE }}
architecture: ${{ env.JAVA_ARCH }}
distribution: ${{ env.JAVA_DISTRO }}
cache: maven
- id: maven
name: Maven Tooling
run: mvn --batch-mode install --define skipTests
- id: gwu
name: yosql-tooling-gradle
uses: EdwarDDay/upgrade-gradle-action@v1
with:
working-directory: yosql-tooling/yosql-tooling-gradle
distribution-type: all
- name: yosql-examples-gradle
uses: EdwarDDay/upgrade-gradle-action@v1
with:
working-directory: yosql-examples/yosql-examples-gradle
distribution-type: all
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v2
- id: cpr
name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.PAT }}
commit-message: Update gradle-wrapper to latest version
committer: GitHub <noreply@github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
title: Update gradle-wrapper to latest version
body: ${{ steps.gwu.outputs.version-information }}
labels: |
Build :: Gradle
Priority :: Low
Type :: Task
assignees: sebhoss
draft: false
base: main
branch: update-gradle-wrapper
delete-branch: true
- name: Enable Pull Request Automerge
if: steps.cpr.outputs.pull-request-operation == 'created'
run: gh pr merge --rebase --auto "${{ steps.cpr.outputs.pull-request-number }}"
with:
token: ${{ secrets.PAT }}