Skip to content

Commit

Permalink
Fix gradle/gradle-build-action@v2 warnings
Browse files Browse the repository at this point in the history
Avoid:
```
Node.js 16 actions are deprecated.
Please update the following actions to use Node.js 20: gradle/gradle-build-action@v2.
For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```
  • Loading branch information
dagguh committed Jun 6, 2024
1 parent e5a0668 commit 9c7d2fb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: build
run: ./gradlew build
- name: Upload diagnoses
if: always()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 9c7d2fb

Please sign in to comment.