From fb938f054a2cd14d5dc66997b3f5e5dfc53220c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 18:14:48 +0000 Subject: [PATCH 1/2] Bump pyansys/actions from 3 to 4 Bumps [pyansys/actions](https://github.com/pyansys/actions) from 3 to 4. - [Release notes](https://github.com/pyansys/actions/releases) - [Commits](https://github.com/pyansys/actions/compare/v3...v4) --- updated-dependencies: - dependency-name: pyansys/actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd.yml | 20 ++++++++++---------- .github/workflows/nightly_docker_test.yml | 2 +- .github/workflows/package_cleanup.yml | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) 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 }} From 306038d3b2a3d806cfc9a570f09a6f7c1b51a8ba Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Tue, 28 Feb 2023 10:36:48 +0100 Subject: [PATCH 2/2] Update conf.py --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",