From 7c95792408e693591517f94f67e87b438fceaeae Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 29 Aug 2023 10:08:03 +1000 Subject: [PATCH] Use newer actions for doc deployment workflow Signed-off-by: Jordan Borean --- .github/workflows/deploy-docs.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 6b3bf546..2bfe12a9 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Select python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9 @@ -30,9 +30,8 @@ jobs: DISTRO: fedora:latest - name: Deploy latest docs - uses: JamesIves/github-pages-deploy-action@3.7.1 + uses: JamesIves/github-pages-deploy-action@v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: ci_docs_build - TARGET_FOLDER: latest + branch: gh-pages + folder: ci_docs_build + target-folder: latest