From 879ccfe3a9d292acb82212dc3268f564dc71ce7b Mon Sep 17 00:00:00 2001 From: Jeff Lewis Date: Mon, 16 Dec 2024 21:59:56 -0700 Subject: [PATCH] update workflow --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9216ce3..f816b63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,13 +20,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout current branch (full) - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Setup Java - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: - distribution: adopt - java-version: 11 + distribution: 'temurin' + java-version: '17' - name: Get mill version run: echo "MILL_VERSION=$(cat .mill-version)" >> $GITHUB_ENV