diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7608f68..34dce39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -323,6 +323,9 @@ jobs: java: [temurin@21] runs-on: ${{ matrix.os }} steps: + - name: Checkout current branch (fast) + uses: actions/checkout@v4 + - name: Download command line linux build uses: actions/download-artifact@v4 with: diff --git a/build.sbt b/build.sbt index dd7ecb0..41d295d 100644 --- a/build.sbt +++ b/build.sbt @@ -157,6 +157,7 @@ ThisBuild / githubWorkflowGeneratedCI := (ThisBuild / githubWorkflowGeneratedCI) scalas = Nil, javas = List(JavaSpec.temurin("21")), steps = List( + WorkflowStep.Checkout, WorkflowStep.Use( name = Some("Download command line linux build"), ref = UseRef.Public("actions", "download-artifact", "v4"),