From 5fa7a57b8655573a936e6e03ed231e0b4afabf47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 03:33:32 +0000 Subject: [PATCH] build(deps): bump ansys/actions from 7 to 8 in the action-deps group Bumps the action-deps group with 1 update: [ansys/actions](https://github.com/ansys/actions). Updates `ansys/actions` from 7 to 8 - [Release notes](https://github.com/ansys/actions/releases) - [Commits](https://github.com/ansys/actions/compare/v7...v8) --- updated-dependencies: - dependency-name: ansys/actions dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index aea68385..bf084906 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -25,7 +25,7 @@ jobs: steps: - name: PyAnsys Vulnerability check (on main) if: github.ref == 'refs/heads/main' - uses: ansys/actions/check-vulnerabilities@v7 + uses: ansys/actions/check-vulnerabilities@v8 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} python-package-name: ${{ env.LIBRARY_NAME }} @@ -33,7 +33,7 @@ jobs: - name: PyAnsys Vulnerability check (on dev mode) if: github.ref != 'refs/heads/main' - uses: ansys/actions/check-vulnerabilities@v7 + uses: ansys/actions/check-vulnerabilities@v8 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} python-package-name: ${{ env.LIBRARY_NAME }} @@ -44,7 +44,7 @@ jobs: name: "Documentation style" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@v7 + - uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -57,7 +57,7 @@ jobs: os: [ubuntu-latest, windows-latest] python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - - uses: ansys/actions/build-wheelhouse@v7 + - uses: ansys/actions/build-wheelhouse@v8 with: library-name: ${{ env.LIBRARY_NAME }} operating-system: ${{ matrix.os }} @@ -74,7 +74,7 @@ jobs: python-version: ['3.9', '3.12'] fail-fast: false steps: - - uses: ansys/actions/tests-pytest@v7 + - uses: ansys/actions/tests-pytest@v8 env: TOKEN: ${{ secrets.TEST_TOKEN }} with: @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest needs: [doc-style] steps: - - uses: ansys/actions/doc-build@v7 + - uses: ansys/actions/doc-build@v8 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -110,7 +110,7 @@ jobs: runs-on: ubuntu-latest needs: [doc-build, tests] steps: - - uses: ansys/actions/build-library@v7 + - uses: ansys/actions/build-library@v8 with: library-name: ${{ env.LIBRARY_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -121,7 +121,7 @@ jobs: needs: [build-library] if: github.event_name == 'push' && !contains(github.ref, 'refs/tags') steps: - - uses: ansys/actions/doc-deploy-dev@v7 + - uses: ansys/actions/doc-deploy-dev@v8 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -133,14 +133,14 @@ jobs: runs-on: ubuntu-latest steps: - name: "Release to the public PyPI repository" - uses: ansys/actions/release-pypi-public@v7 + uses: ansys/actions/release-pypi-public@v8 with: library-name: ${{ env.LIBRARY_NAME }} twine-username: "__token__" twine-token: ${{ secrets.PYPI_TOKEN }} - name: "Release to GitHub" - uses: ansys/actions/release-github@v7 + uses: ansys/actions/release-github@v8 with: library-name: ${{ env.LIBRARY_NAME }} @@ -150,7 +150,7 @@ jobs: needs: [release] if: github.event_name == 'push' && contains(github.ref, 'refs/tags') steps: - - uses: ansys/actions/doc-deploy-stable@v7 + - uses: ansys/actions/doc-deploy-stable@v8 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }}