From 3fa14e5c9c6d46f507d9da2de2dbd894a5d7caa7 Mon Sep 17 00:00:00 2001 From: Christian Gendreau Date: Tue, 17 Sep 2024 14:14:19 -0400 Subject: [PATCH] Update build_deploy_specs.yml --- .github/workflows/build_deploy_specs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_deploy_specs.yml b/.github/workflows/build_deploy_specs.yml index 2c5d1af..c8fbedc 100644 --- a/.github/workflows/build_deploy_specs.yml +++ b/.github/workflows/build_deploy_specs.yml @@ -7,17 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '18' - name: building using redoc-cli run: | npx redoc-cli bundle schema/natural-history-collection-api.yml -o redoc/index.html - name: Deploy GitHub Pages (only on master branch) if: ${{ github.ref == 'refs/heads/master' }} - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: redoc