From 64b9c6e5defc9442198d06a931a25f040dfcb4f2 Mon Sep 17 00:00:00 2001 From: David Bailey Date: Sat, 27 Mar 2021 16:32:38 +0000 Subject: [PATCH] Remove unnecessary GitHub Actions step "make gradle wrapper executable" is not necessary because it already has the executable bit set in the repository. --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31c38ee..104eb70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,9 +28,6 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - - name: make gradle wrapper executable - if: ${{ runner.os != 'Windows' }} - run: chmod +x ./gradlew - name: build run: ./gradlew build - name: capture build artifacts