From 08cff320273b4a3cb3f56a3de900fcc674dc6689 Mon Sep 17 00:00:00 2001 From: crc32 <7893269+crc-32@users.noreply.github.com> Date: Thu, 9 May 2024 17:16:04 +0100 Subject: [PATCH] move checkout pre-cache --- .github/workflows/pull.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 125b19a..e178ce8 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -11,6 +11,8 @@ jobs: uses: actions/setup-java@v1.4.4 with: java-version: 11 + - name: Checkout source + uses: actions/checkout@v4 - name: Cache build deps uses: actions/cache@v4 with: @@ -19,7 +21,5 @@ jobs: ~/.konan/cache ~/.konan/dependencies key: build-deps-${{ runner.os }}-${{ hashFiles('gradle/**', 'gradlew*', 'gradle.properties', '*.gradle*') }} - - name: Checkout source - uses: actions/checkout@v1 - name: Build run: ./gradlew build