diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index d018e083db..13fe92e727 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys code style checks - uses: pyansys/actions/code-style@v3 + uses: pyansys/actions/code-style@v4 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys documentation style checks - uses: pyansys/actions/doc-style@v3 + uses: pyansys/actions/doc-style@v4 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -57,7 +57,7 @@ jobs: steps: - name: Build wheelhouse and perform smoke test - uses: pyansys/actions/build-wheelhouse@v3 + uses: pyansys/actions/build-wheelhouse@v4 with: library-name: ${{ env.PACKAGE_NAME }} library-namespace: ${{ env.PACKAGE_NAMESPACE }} @@ -76,7 +76,7 @@ jobs: steps: - name: Build wheelhouse and perform smoke test - uses: pyansys/actions/build-wheelhouse@v3 + uses: pyansys/actions/build-wheelhouse@v4 with: library-name: ${{ env.PACKAGE_NAME }} library-namespace: ${{ env.PACKAGE_NAMESPACE }} @@ -285,7 +285,7 @@ jobs: restore-keys: pyvista-image-cache-${{ runner.os }}-v-${{ env.RESET_IMAGE_CACHE }} - name: Run pytest - uses: pyansys/actions/tests-pytest@v3 + uses: pyansys/actions/tests-pytest@v4 env: ALLOW_PLOTTING: true with: @@ -321,7 +321,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Build library source and wheel artifacts - uses: pyansys/actions/build-library@v3 + uses: pyansys/actions/build-library@v4 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -333,14 +333,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Release to the private PyPI repository - uses: pyansys/actions/release-pypi-private@v3 + uses: pyansys/actions/release-pypi-private@v4 with: library-name: ${{ env.PACKAGE_NAME }} twine-username: "__token__" twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }} - name: Release to GitHub - uses: pyansys/actions/release-github@v3 + uses: pyansys/actions/release-github@v4 with: library-name: ${{ env.PACKAGE_NAME }} @@ -351,7 +351,7 @@ jobs: needs: [package] steps: - name: Deploy the latest documentation - uses: pyansys/actions/doc-deploy-dev@v3 + uses: pyansys/actions/doc-deploy-dev@v4 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -363,7 +363,7 @@ jobs: needs: [release] steps: - name: Deploy the stable documentation - uses: pyansys/actions/doc-deploy-stable@v3 + uses: pyansys/actions/doc-deploy-stable@v4 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/nightly_docker_test.yml b/.github/workflows/nightly_docker_test.yml index 26e93320a5..19c5801fe2 100644 --- a/.github/workflows/nightly_docker_test.yml +++ b/.github/workflows/nightly_docker_test.yml @@ -99,7 +99,7 @@ jobs: docker run --detach --name ${{ env.GEO_CONT_NAME }} -e LICENSE_SERVER=${{ env.ANSRV_GEO_LICENSE_SERVER }} -p ${{ env.ANSRV_GEO_PORT }}:50051 ${{ env.ANSRV_GEO_IMAGE_LINUX_TAG }} - name: Run pytest - uses: pyansys/actions/tests-pytest@v3 + uses: pyansys/actions/tests-pytest@v4 env: ALLOW_PLOTTING: true with: diff --git a/.github/workflows/package_cleanup.yml b/.github/workflows/package_cleanup.yml index 18a4f52def..52a194a420 100644 --- a/.github/workflows/package_cleanup.yml +++ b/.github/workflows/package_cleanup.yml @@ -22,7 +22,7 @@ jobs: steps: - name: "Perform versions cleanup - except certain tags" - uses: pyansys/actions/hk-package-clean-except@main + uses: pyansys/actions/hk-package-clean-except@v4 with: package-name: 'geometry' token: ${{ secrets.GITHUB_TOKEN }} diff --git a/doc/source/conf.py b/doc/source/conf.py index 0c545d5863..213b0a8612 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -41,7 +41,7 @@ } html_theme_options = { "switcher": { - "json_url": f"https://{cname}/release/versions.json", + "json_url": f"https://{cname}/versions.json", "version_match": switcher_version, }, "github_url": "https://github.com/pyansys/pygeometry",