From cce31528dbac4bae39d7392504eb6dfe6d8bc289 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:16:39 +0000 Subject: [PATCH] MAINT: Bump ansys/actions from 4 to 5 Bumps [ansys/actions](https://github.com/ansys/actions) from 4 to 5. - [Release notes](https://github.com/ansys/actions/releases) - [Commits](https://github.com/ansys/actions/compare/v4...v5) --- 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 d4a30778..5af224df 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -30,7 +30,7 @@ jobs: name: "Code style" runs-on: ubuntu-latest steps: - - uses: ansys/actions/code-style@v4 + - uses: ansys/actions/code-style@v5 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-python-cache: false @@ -39,7 +39,7 @@ jobs: name: "Documentation style" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@v4 + - uses: ansys/actions/doc-style@v5 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-latest needs: doc-style steps: - - uses: ansys/actions/doc-build@v4 + - uses: ansys/actions/doc-build@v5 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} check-links: false @@ -63,7 +63,7 @@ jobs: runs-on: ${{ matrix.os }} needs: [ code-style ] steps: - - uses: ansys/actions/build-wheelhouse@v4 + - uses: ansys/actions/build-wheelhouse@v5 with: library-name: ${{ env.LIBRARY_NAME }} operating-system: ${{ matrix.os }} @@ -137,7 +137,7 @@ jobs: runs-on: ubuntu-latest needs: [ doc-build, tests_windows_aedt ] steps: - - uses: ansys/actions/build-library@v4 + - uses: ansys/actions/build-library@v5 with: library-name: ${{ env.LIBRARY_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -150,7 +150,7 @@ jobs: steps: - name: "Release to the private PyPI" - uses: ansys/actions/release-pypi-private@v4 + uses: ansys/actions/release-pypi-private@v5 with: library-name: ${{ env.LIBRARY_NAME }} twine-username: "__token__" @@ -164,7 +164,7 @@ jobs: # twine-token: ${{ secrets.PYPI_TOKEN }} - name: "Release to GitHub" - uses: ansys/actions/release-github@v4 + uses: ansys/actions/release-github@v5 with: library-name: ${{ env.LIBRARY_NAME }} @@ -174,7 +174,7 @@ jobs: needs: build-library if: github.event_name == 'push' steps: - - uses: ansys/actions/doc-deploy-dev@v4 + - uses: ansys/actions/doc-deploy-dev@v5 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -185,7 +185,7 @@ jobs: needs: release if: github.event_name == 'push' && contains(github.ref, 'refs/tags') steps: - - uses: ansys/actions/doc-deploy-stable@v4 + - uses: ansys/actions/doc-deploy-stable@v5 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }}