From bf8e86b67aa2b00888dba99a00c9013d7918b2a5 Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Mon, 16 Oct 2023 14:08:53 -0400 Subject: [PATCH] use same version of actions/checkout --- .github/workflows/build-docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index b611d79cd..b2423ed88 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -12,12 +12,13 @@ jobs: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 with: ref: ${{ github.head_ref }} - name: Install NPM dependencies run: npm ci - name: Build API docs + # TODO: fix jsdoc build errors then remove '|| true' from run command below run: npm run docs || true - name: Commit any changes back to the PR uses: stefanzweifel/git-auto-commit-action@v5