Skip to content

Commit 5f6b4e7

Browse files
authored
Merge pull request #2477 from sullis/gradle-wrapper-validation
enable Gradle wrapper validation
2 parents e016840 + 1de459b commit 5f6b4e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
name: Java ${{ matrix.java }} Build
1717
steps:
1818
- uses: actions/checkout@v2
19+
- name: Gradle wrapper validation
20+
uses: gradle/wrapper-validation-action@v1
1921
- name: Set up JDK ${{ matrix.java }}
2022
uses: actions/setup-java@v1
2123
with:

.github/workflows/publish-maven-central.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2222
- uses: actions/checkout@v2
2323

24+
- name: Gradle wrapper validation
25+
uses: gradle/wrapper-validation-action@v1
26+
2427
# Runs a single command using the runners shell
2528
- name: Install gpg secret key
2629
run: |
@@ -39,4 +42,3 @@ jobs:
3942
- name: Display next step
4043
run: |
4144
echo "Now go to https://oss.sonatype.org/index.html#stagingRepositories, select the repo, Close it and then Release it"
42-

0 commit comments

Comments
 (0)