From b029aa53eaec8547be58ca8e30f10ed0db2cc3b9 Mon Sep 17 00:00:00 2001 From: jdfiguer Date: Wed, 29 May 2024 18:05:11 -0400 Subject: [PATCH] Adds space to trigger workflows on latest update --- .github/workflows/build-deploy-doc.yml | 12 ++++++------ .github/workflows/build-documentation.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-deploy-doc.yml b/.github/workflows/build-deploy-doc.yml index f60d3c12a..447060473 100644 --- a/.github/workflows/build-deploy-doc.yml +++ b/.github/workflows/build-deploy-doc.yml @@ -60,21 +60,21 @@ jobs: - name: Get cache if supplied id: cache-src-bld if: ${{ inputs.cache-key != '' }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/work/${{ github.event.repository.name }}/${{ github.event.repository.name }}/* key: ${{ inputs.cache-key }} - name: Checkout Bundle Main if: ${{ inputs.app-name != '' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true repository: nasa/cFS - name: Checkout Repo if: ${{ inputs.app-name != '' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: apps/${{ inputs.app-name }} @@ -108,7 +108,7 @@ jobs: mv build/docs/${{ matrix.target }}/${{ matrix.target }}-warnings.log . - name: Archive Document Build Logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.target }}_doc_build_logs path: | @@ -141,13 +141,13 @@ jobs: - name: Archive PDF if: ${{ inputs.buildpdf == true }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.target }}_pdf path: ./deploy/${{ matrix.target }}.pdf - name: Deploy to GitHub - if: ${{ inputs.deploy == true }} + if: ${{ inputs.deploy == true }} uses: JamesIves/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 08fa5a5a7..cde450879 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -47,7 +47,7 @@ jobs: build-cfs-documentation: needs: checkout-and-cache name: Build cFS documents - uses: nasa/cFS/.github/workflows/build-deploy-doc.yml@main + uses: chillfig/cFS/.github/workflows/build-deploy-doc.yml@testNode20 with: target: "[\"cfe-usersguide\", \"osal-apiguide\", \"mission-doc\"]" cache-key: cfs-doc-${{ github.run_number }}