Skip to content

Commit ea4a31e

Browse files
committed
Update GitHub Actions workflow to include JDK setup and cache configuration
1 parent bb27e97 commit ea4a31e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
run: |
2121
apt update || echo "apt-update failed" # && apt -y upgrade
2222
23+
- name: Checkout ${{ github.event.repository.name }}
24+
uses: actions/checkout@v4
25+
2326
- name: Set up JDK ${{ matrix.java-version }}
2427
uses: actions/setup-java@v4
2528
with:
2629
java-version: ${{ matrix.java-version }}
2730
distribution: "adopt"
28-
cache: gradle
29-
30-
- name: Checkout ${{ github.event.repository.name }}
31-
uses: actions/checkout@v4
31+
cache: "gradle"
3232

3333
- name: Setup couchbase
3434
run: |

0 commit comments

Comments
 (0)