From bd10018aa87467aac05aeb12f4b7cf6c629f8aa4 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 24 Jun 2026 20:31:27 -0700 Subject: [PATCH] Must checkout submodules in publish workflow (#84) --- .github/workflows/bld.yml | 3 +-- .github/workflows/pages.yml | 3 +-- .github/workflows/publish.yml | 2 ++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index 0c2c847..ae22c74 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -109,11 +109,10 @@ jobs: - name: Cache bld dependencies id: cache-bld - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: lib key: ${{ runner.os }}-bld-java${{ matrix.java-version}}-lib - restore-keys: ${{ runner.os }}-bld-java${{ matrix.java-version}}-lib - name: Compile source run: ./bld clean compile diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index f9317d3..678a353 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -45,11 +45,10 @@ jobs: - name: Cache bld dependencies id: cache-bld - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: lib key: ${{ runner.os }}-bld-pages-lib - restore-keys: ${{ runner.os }}-bld-pages-lib - name: Build Javadocs run: ./bld clean compile javadoc diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cc2a94f..e2044d3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,8 @@ jobs: - name: Checkout source repository uses: actions/checkout@v7 with: + clean: true + submodules: 'true' fetch-depth: 0 - name: Check version is SNAPSHOT