From 9eb7e76da55ce97b40a8001dfc5e0f89a295bb5c Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 25 Jul 2026 19:44:50 +0700 Subject: [PATCH] ci: use gradle cache and checkout v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c04eeac..894ae9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 21 uses: actions/setup-java@v4 with: java-version: 21 distribution: temurin - cache: maven + cache: gradle - name: Build run: ./gradlew build