Skip to content

Commit 0538a92

Browse files
chore: make gradlew executable (#319)
- Fixed github actions removing the `chmod +x gradlew` step Refs: #125
1 parent 74a6ad6 commit 0538a92

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

.github/workflows/master.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ jobs:
3535
key: ${{ runner.os }}-${{ env.java-version }}-gradle-${{ hashFiles('**/*.gradle*') }}
3636
restore-keys: |
3737
${{ runner.os }}-${{ env.java-version }}-gradle-
38-
- name: Make gradlew executable
39-
run: chmod +x ./gradlew
4038
- name: Gradle Check
4139
run: ./gradlew --info check
4240

@@ -65,8 +63,6 @@ jobs:
6563
path: ~/.gradle/caches
6664
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
6765
restore-keys: ${{ runner.os }}-gradle
68-
- name: Make gradlew executable
69-
run: chmod +x ./gradlew
7066
- name: Build and analyze
7167
env:
7268
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any

.github/workflows/pull-request.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727
with:
2828
distribution: 'temurin'
2929
java-version: ${{ matrix.java }}
30-
- name: Make gradlew executable (non-Windows only)
31-
if: matrix.os != 'windows-latest'
32-
run: chmod +x ./gradlew
3330
- name: Gradle Check (non-Windows)
3431
if: matrix.os != 'windows-latest'
3532
run: ./gradlew --info check

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)