Validate the gradlew checksums before running any build commands (#24)

This commit is contained in:
Raven Szewczyk 2023-04-03 16:44:47 +01:00 committed by GitHub
parent e45a8514ea
commit 11228f0865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,9 @@ jobs:
path: .gtnh-workflows path: .gtnh-workflows
fetch-depth: 0 fetch-depth: 0
- name: Validate gradle wrapper checksum
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 8 and 17 - name: Set up JDK 8 and 17
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:

View File

@ -30,6 +30,9 @@ jobs:
with: with:
fetch-depth: 32 fetch-depth: 32
- name: Validate gradle wrapper checksum
uses: gradle/wrapper-validation-action@v1
- name: Set release version - name: Set release version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV