Skip to content

Commit d354c1d

Browse files
committed
Remove gradle command action
1 parent 8acd60f commit d354c1d

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,7 @@ jobs:
6161
# and modify them (or add more) to build your code if your project
6262
# uses a compiled language
6363
- name: Build
64-
uses: eskatos/gradle-command-action@v1
65-
with:
66-
arguments: build -PskipSpotless --info -x test
67-
distributions-cache-enabled: true
68-
dependencies-cache-enabled: true
69-
configuration-cache-enabled: true
64+
run: ./gradlew build -PskipSpotless --info -x test
7065
env:
7166
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7267

.github/workflows/documentation.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,7 @@ jobs:
2424
distribution: 'zulu'
2525
java-version: 17
2626
- name: Build documentation
27-
uses: eskatos/gradle-command-action@v1
28-
with:
29-
arguments: :darklaf-core:makeDocumentation -PskipSpotless -x test
30-
distributions-cache-enabled: true
31-
dependencies-cache-enabled: true
32-
configuration-cache-enabled: true
27+
run: ./gradlew :darklaf-core:makeDocumentation -PskipSpotless -x test
3328
- name: Upload documentation
3429
uses: actions/upload-artifact@v4
3530
with:

0 commit comments

Comments
 (0)