From 8ea122c7c9249eb72fd3fd04c44d9074da885e7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 07:50:59 +0000 Subject: [PATCH] MAINT: Bump ansys/actions from 5 to 6 Bumps [ansys/actions](https://github.com/ansys/actions) from 5 to 6. - [Release notes](https://github.com/ansys/actions/releases) - [Commits](https://github.com/ansys/actions/compare/v5...v6) --- updated-dependencies: - dependency-name: ansys/actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 8f12fe507..e055294fd 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys code style checks - uses: ansys/actions/code-style@v5 + uses: ansys/actions/code-style@v6 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys documentation style checks - uses: ansys/actions/doc-style@v5 + uses: ansys/actions/doc-style@v6 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -53,7 +53,7 @@ jobs: os: macos-latest steps: - name: Build wheelhouse and perform smoke test - uses: ansys/actions/build-wheelhouse@v5 + uses: ansys/actions/build-wheelhouse@v6 with: library-name: ${{ env.PACKAGE_NAME }} library-namespace: ${{ env.PACKAGE_NAMESPACE }} @@ -115,7 +115,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Run documentation building action - uses: ansys/actions/doc-build@v5 + uses: ansys/actions/doc-build@v6 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -125,7 +125,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Build library source and wheel artifacts - uses: ansys/actions/build-library@v5 + uses: ansys/actions/build-library@v6 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -137,14 +137,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Release to the public PyPI repository - uses: ansys/actions/release-pypi-public@v5 + uses: ansys/actions/release-pypi-public@v6 with: library-name: ${{ env.PACKAGE_NAME }} twine-username: "__token__" twine-token: ${{ secrets.PYPI_TOKEN }} - name: Release to GitHub - uses: ansys/actions/release-github@v5 + uses: ansys/actions/release-github@v6 with: library-name: ${{ env.PACKAGE_NAME }} @@ -155,7 +155,7 @@ jobs: needs: [ package ] steps: - name: Deploy the latest documentation - uses: ansys/actions/doc-deploy-dev@v5 + uses: ansys/actions/doc-deploy-dev@v6 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -167,7 +167,7 @@ jobs: needs: [ release ] steps: - name: Deploy the stable documentation - uses: ansys/actions/doc-deploy-stable@v5 + uses: ansys/actions/doc-deploy-stable@v6 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }}