From e901027d2398c8e7111908957db3da19c19b2881 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 22:44:51 +0000 Subject: [PATCH 1/2] ci: bump ansys/actions from 10.3.1 to 10.3.2 Bumps [ansys/actions](https://github.com/ansys/actions) from 10.3.1 to 10.3.2. - [Release notes](https://github.com/ansys/actions/releases) - [Changelog](https://github.com/ansys/actions/blob/main/CHANGELOG.md) - [Commits](https://github.com/ansys/actions/compare/12ca08fd7f0caa52076cca15c5621482646f8560...d946b24b9a765f4169bcc94afdb27bd1a0533741) --- updated-dependencies: - dependency-name: ansys/actions dependency-version: 10.3.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-main.yml | 2 +- .github/workflows/ci-pr.yml | 22 +++++++++++----------- .github/workflows/ci-release.yml | 20 ++++++++++---------- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index cb112c8..d151cb1 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Run Ansys documentation building action - uses: ansys/actions/doc-build@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/doc-build@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: group-dependencies-name: "doc" check-links: false diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 4ab7139..58f9230 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -25,7 +25,7 @@ jobs: pull-requests: read # Required to read PR metadata steps: - name: Check commit name - uses: ansys/actions/check-pr-title@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/check-pr-title@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -37,7 +37,7 @@ jobs: pull-requests: write # Required for the changelog steps: - name: Create fragment - uses: ansys/actions/doc-changelog@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/doc-changelog@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }} @@ -100,7 +100,7 @@ jobs: steps: - name: PyAnsys Vulnerability check (on main) if: github.ref == 'refs/heads/main' - uses: ansys/actions/check-vulnerabilities@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/check-vulnerabilities@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} python-package-name: ${{ env.PACKAGE_NAME }} @@ -109,7 +109,7 @@ jobs: - name: PyAnsys Vulnerability check (on dev mode) if: github.ref != 'refs/heads/main' - uses: ansys/actions/check-vulnerabilities@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/check-vulnerabilities@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} python-package-name: ${{ env.PACKAGE_NAME }} @@ -122,7 +122,7 @@ jobs: name: Code style runs-on: ubuntu-latest steps: - - uses: ansys/actions/code-style@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/code-style@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -130,7 +130,7 @@ jobs: name: Doc style runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/doc-style@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -138,7 +138,7 @@ jobs: name: Actions style runs-on: ubuntu-latest steps: - - uses: ansys/actions/check-actions-security@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/check-actions-security@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: generate-summary: true token: ${{ secrets.GITHUB_TOKEN }} @@ -154,7 +154,7 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] python: ['3.10', '3.11', '3.12', '3.13'] steps: - - uses: ansys/actions/build-wheelhouse@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/build-wheelhouse@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: library-name: ${{ env.PACKAGE_NAME }} operating-system: ${{ matrix.os }} @@ -167,7 +167,7 @@ jobs: needs: doc-style steps: - name: Run Ansys documentation building action - uses: ansys/actions/doc-build@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/doc-build@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: group-dependencies-name: "doc" check-links: false @@ -203,7 +203,7 @@ jobs: runs-on: ubuntu-latest needs: [wheelhouse] steps: - - uses: ansys/actions/build-library@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/build-library@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -217,7 +217,7 @@ jobs: pull-requests: write # needed for automerge action steps: - name: Automerge PRs - uses: ansys/actions/hk-automerge-prs@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/hk-automerge-prs@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: approver: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} approver-token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 3c7b7cd..ff3535f 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -27,7 +27,7 @@ jobs: pull-requests: write # Required for the changelog steps: - name: Deploy changelog - uses: ansys/actions/doc-deploy-changelog@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/doc-deploy-changelog@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} @@ -39,7 +39,7 @@ jobs: steps: - name: PyAnsys Vulnerability check (on main) if: github.ref == 'refs/heads/main' - uses: ansys/actions/check-vulnerabilities@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/check-vulnerabilities@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} python-package-name: ${{ env.PACKAGE_NAME }} @@ -50,7 +50,7 @@ jobs: name: Code style runs-on: ubuntu-latest steps: - - uses: ansys/actions/code-style@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/code-style@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -58,7 +58,7 @@ jobs: name: Doc style runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/doc-style@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -66,7 +66,7 @@ jobs: name: Actions style runs-on: ubuntu-latest steps: - - uses: ansys/actions/check-actions-security@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/check-actions-security@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: generate-summary: true token: ${{ secrets.GITHUB_TOKEN }} @@ -82,7 +82,7 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] python: ['3.10', '3.11', '3.12', '3.13'] steps: - - uses: ansys/actions/build-wheelhouse@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/build-wheelhouse@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: library-name: ${{ env.PACKAGE_NAME }} operating-system: ${{ matrix.os }} @@ -95,7 +95,7 @@ jobs: needs: doc-style steps: - name: Run Ansys documentation building action - uses: ansys/actions/doc-build@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/doc-build@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: group-dependencies-name: "doc" check-links: false @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-latest needs: [wheelhouse] steps: - - uses: ansys/actions/build-library@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/build-library@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -160,7 +160,7 @@ jobs: skip-existing: false - name: Release to GitHub - uses: ansys/actions/release-github@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + uses: ansys/actions/release-github@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: token: ${{ secrets.GITHUB_TOKEN }} library-name: ${{ env.PACKAGE_NAME }} @@ -170,7 +170,7 @@ jobs: runs-on: ubuntu-latest needs: [release] steps: - - uses: ansys/actions/doc-deploy-stable@12ca08fd7f0caa52076cca15c5621482646f8560 # v10.3.1 + - uses: ansys/actions/doc-deploy-stable@d946b24b9a765f4169bcc94afdb27bd1a0533741 # v10.3.2 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} From 5bf631f70afc1be99bcf73b63505835e25294a90 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Fri, 29 May 2026 22:45:16 +0000 Subject: [PATCH 2/2] chore: adding changelog file 81.maintenance.md [dependabot-skip] --- doc/changelog.d/81.maintenance.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/81.maintenance.md diff --git a/doc/changelog.d/81.maintenance.md b/doc/changelog.d/81.maintenance.md new file mode 100644 index 0000000..251a54b --- /dev/null +++ b/doc/changelog.d/81.maintenance.md @@ -0,0 +1 @@ +Bump ansys/actions from 10.3.1 to 10.3.2