From c73a74b89b3dc30dc4704e68e2f0719013c18250 Mon Sep 17 00:00:00 2001 From: Camille Latapie <78221213+clatapie@users.noreply.github.com> Date: Thu, 12 Jun 2025 08:01:53 -0400 Subject: [PATCH 1/3] feat: improving error message for smoke tests (#908) Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- build-wheelhouse/smoke_test.py | 8 ++++++-- doc/source/changelog/908.added.md | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 doc/source/changelog/908.added.md diff --git a/build-wheelhouse/smoke_test.py b/build-wheelhouse/smoke_test.py index 3bd748316..f9d84d2e7 100644 --- a/build-wheelhouse/smoke_test.py +++ b/build-wheelhouse/smoke_test.py @@ -75,13 +75,17 @@ def find_module_from_dist(pkg_name: str, attr: str): # Try to import each parent package and check for the desired attribute for path in candidate_paths: import_path = ".".join(path.parent.parts) + # Performing smoke test import try: mod = importlib.import_module(import_path) if hasattr(mod, attr): return import_path, getattr(mod, attr) - except Exception: - continue + except Exception as e: + raise ImportError( + f"Smoke test failed for package '{pkg_name}' with error: {e}" + ) from e + # No module with the specified attribute was found in the package raise ImportError( f"Could not find a module in '{pkg_name}' with attribute '{attr}'" ) diff --git a/doc/source/changelog/908.added.md b/doc/source/changelog/908.added.md new file mode 100644 index 000000000..1284f78db --- /dev/null +++ b/doc/source/changelog/908.added.md @@ -0,0 +1 @@ +Improving error message for smoke tests \ No newline at end of file From 3e7e55c48f82132003e0ca1914e9f8b9ae2fbea8 Mon Sep 17 00:00:00 2001 From: Jorge Martinez Date: Thu, 12 Jun 2025 14:04:33 +0200 Subject: [PATCH 2/3] release: v10.0.11 --- .ci/ansys-actions/pyproject.toml | 2 +- .github/workflows/ci_cd_main.yml | 4 ++-- .github/workflows/ci_cd_night.yml | 6 +++--- .github/workflows/ci_cd_pr.yml | 18 ++++++++-------- .github/workflows/ci_cd_release.yml | 12 +++++------ VERSION | 2 +- _doc-build-linux/action.yml | 22 +++++++++---------- _doc-build-windows/action.yml | 30 +++++++++++++------------- _doc-gen-canonical/action.yml | 2 +- _doc-gen-robots/action.yml | 2 +- _doc-gen-sitemap/action.yml | 2 +- _pr-doc-clean/action.yml | 6 +++--- _pr-doc-deployment/action.yml | 10 ++++----- _release-pypi/action.yml | 4 ++-- _setup-python/action.yml | 2 +- build-library/action.yml | 2 +- build-wheelhouse/action.yml | 4 ++-- check-licenses/action.yml | 6 +++--- check-vulnerabilities/action.yml | 8 +++---- code-style/action.yml | 14 ++++++------ doc-build/action.yml | 8 +++---- doc-changelog/action.yml | 8 +++---- doc-deploy-changelog/action.yml | 2 +- doc-deploy-dev/action.yml | 24 ++++++++++----------- doc-deploy-pr/action.yml | 4 ++-- doc-deploy-stable/action.yml | 32 ++++++++++++++-------------- doc-style/action.yml | 4 ++-- docker-style/action.yml | 12 +++++------ hk-package-clean-except/action.yml | 2 +- hk-package-clean-untagged/action.yml | 2 +- release-github/action.yml | 22 +++++++++---------- release-pypi-private/action.yml | 2 +- release-pypi-public/action.yml | 4 ++-- release-pypi-test/action.yml | 4 ++-- tests-pytest/action.yml | 8 +++---- 35 files changed, 148 insertions(+), 148 deletions(-) diff --git a/.ci/ansys-actions/pyproject.toml b/.ci/ansys-actions/pyproject.toml index 3ad46317f..56da1fb36 100644 --- a/.ci/ansys-actions/pyproject.toml +++ b/.ci/ansys-actions/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections name = "ansys-actions-core" -version = "10.0.10" +version = "10.0.11" description = "A demo library for testing Ansys actions" readme = "README.rst" requires-python = ">=3.7" diff --git a/.github/workflows/ci_cd_main.yml b/.github/workflows/ci_cd_main.yml index 281a33a73..c793450a0 100644 --- a/.github/workflows/ci_cd_main.yml +++ b/.github/workflows/ci_cd_main.yml @@ -20,7 +20,7 @@ jobs: name: "Doc build" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-build@v10.0.10 + - uses: ansys/actions/doc-build@v10.0.11 with: skip-install: true python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -34,7 +34,7 @@ jobs: permissions: contents: write steps: - - uses: ansys/actions/doc-deploy-dev@v10.0.10 + - uses: ansys/actions/doc-deploy-dev@v10.0.11 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci_cd_night.yml b/.github/workflows/ci_cd_night.yml index 9928c34bd..ebdb79257 100644 --- a/.github/workflows/ci_cd_night.yml +++ b/.github/workflows/ci_cd_night.yml @@ -21,7 +21,7 @@ jobs: name: "Doc build" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-build@v10.0.10 + - uses: ansys/actions/doc-build@v10.0.11 with: skip-install: true python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -35,7 +35,7 @@ jobs: permissions: contents: write steps: - - uses: ansys/actions/doc-deploy-dev@v10.0.10 + - uses: ansys/actions/doc-deploy-dev@v10.0.11 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -56,7 +56,7 @@ jobs: persist-credentials: false - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-cache: false diff --git a/.github/workflows/ci_cd_pr.yml b/.github/workflows/ci_cd_pr.yml index d507b5500..207ba7cb9 100644 --- a/.github/workflows/ci_cd_pr.yml +++ b/.github/workflows/ci_cd_pr.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Decide which environment should be used id: block - uses: ansys/actions/check-environment-approval@v10.0.10 + uses: ansys/actions/check-environment-approval@v10.0.11 # NOTE: We do not allow dependabot to trigger the CI/CD pipeline automatically. # This is to mitigate supply chain attacks, where a malicious dependency update @@ -87,11 +87,11 @@ jobs: pull-requests: write steps: - - uses: ansys/actions/check-pr-title@v10.0.10 + - uses: ansys/actions/check-pr-title@v10.0.11 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: ansys/actions/doc-changelog@v10.0.10 + - uses: ansys/actions/doc-changelog@v10.0.11 with: token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} use-conventional-commits: true @@ -106,7 +106,7 @@ jobs: if: github.event.action != 'closed' steps: - name: "Run code style checks" - uses: ansys/actions/code-style@v10.0.10 + uses: ansys/actions/code-style@v10.0.11 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-python-cache: false @@ -117,7 +117,7 @@ jobs: needs: changelog-fragment if: github.event.action != 'closed' steps: - - uses: ansys/actions/doc-style@v10.0.10 + - uses: ansys/actions/doc-style@v10.0.11 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -127,7 +127,7 @@ jobs: needs: doc-style if: github.event.action != 'closed' steps: - - uses: ansys/actions/doc-build@v10.0.10 + - uses: ansys/actions/doc-build@v10.0.11 with: skip-install: true python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -148,7 +148,7 @@ jobs: (needs.doc-build.result == 'success' || needs.doc-build.result == 'skipped') && contains(github.event.pull_request.labels.*.name, 'deploy-pr-doc') steps: - - uses: ansys/actions/doc-deploy-pr@v10.0.10 + - uses: ansys/actions/doc-deploy-pr@v10.0.11 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -172,7 +172,7 @@ jobs: persist-credentials: false - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-cache: false @@ -227,7 +227,7 @@ jobs: runs-on: ubuntu-latest if: github.event.action != 'closed' steps: - - uses: ansys/actions/check-actions-security@v10.0.10 + - uses: ansys/actions/check-actions-security@v10.0.11 with: generate-summary: true token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci_cd_release.yml b/.github/workflows/ci_cd_release.yml index e36584ae6..c201e41a9 100644 --- a/.github/workflows/ci_cd_release.yml +++ b/.github/workflows/ci_cd_release.yml @@ -103,7 +103,7 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-deploy-changelog@v10.0.10 + - uses: ansys/actions/doc-deploy-changelog@v10.0.11 with: token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }} bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} @@ -114,7 +114,7 @@ jobs: runs-on: ubuntu-latest needs: rolling-release steps: - - uses: ansys/actions/code-style@v10.0.10 + - uses: ansys/actions/code-style@v10.0.11 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-python-cache: false @@ -126,7 +126,7 @@ jobs: permissions: contents: write steps: - - uses: ansys/actions/doc-style@v10.0.10 + - uses: ansys/actions/doc-style@v10.0.11 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -135,7 +135,7 @@ jobs: runs-on: ubuntu-latest needs: doc-style steps: - - uses: ansys/actions/doc-build@v10.0.10 + - uses: ansys/actions/doc-build@v10.0.11 with: skip-install: true python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -157,7 +157,7 @@ jobs: persist-credentials: false - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-cache: false @@ -265,7 +265,7 @@ jobs: permissions: contents: write steps: - - uses: ansys/actions/doc-deploy-stable@v10.0.10 + - uses: ansys/actions/doc-deploy-stable@v10.0.11 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/VERSION b/VERSION index 6d6c7c85f..89acc9519 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.0.10 +10.0.11 diff --git a/_doc-build-linux/action.yml b/_doc-build-linux/action.yml index 64f03ddd8..9ec017161 100644 --- a/_doc-build-linux/action.yml +++ b/_doc-build-linux/action.yml @@ -209,7 +209,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -232,7 +232,7 @@ runs: echo "SPHINX_BUILD_MAKE=$(echo 'make')" >> $GITHUB_OUTPUT fi - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -241,7 +241,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -374,7 +374,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -414,7 +414,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.add-pdf-html-docs-as-assets == 'true' }} with: level: "INFO" @@ -428,14 +428,14 @@ runs: source .venv/bin/activate python ${{ github.action_path }}/../python-utils/parse_doc_conf.py - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true' ) && (env.PDF_FILENAME == '') }} with: level: "ERROR" message: > Unable to determine PDF filename using conf.py file. - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true' ) && (env.PDF_FILENAME != '') }} with: level: "INFO" @@ -444,7 +444,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.add-pdf-html-docs-as-assets == 'true' }} with: level: "INFO" @@ -467,7 +467,7 @@ runs: run: | echo "EXISTS_EXPECTED_BUILD_DIR=$( [ -d "${EXPECTED_BUILD_DIR}" ] && echo 'true' || echo 'false' )" >> ${GITHUB_OUTPUT} - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true') && (steps.check-expected-build-dir.outputs.EXISTS_EXPECTED_BUILD_DIR == 'false') }} with: level: "ERROR" @@ -492,7 +492,7 @@ runs: run: | echo "EXISTS_EXPECTED_DOWNLOAD_DIR=$( [ -d "${EXPECTED_DOWNLOAD_DIR}" ] && echo 'true' || echo 'false' )" >> ${GITHUB_OUTPUT} - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true') && (steps.check-expected-download-directory.outputs.EXISTS_EXPECTED_DOWNLOAD_DIR == 'false') }} with: level: "WARNING" @@ -509,7 +509,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.add-pdf-html-docs-as-assets == 'true' }} with: level: "INFO" diff --git a/_doc-build-windows/action.yml b/_doc-build-windows/action.yml index cf8692255..78956c231 100644 --- a/_doc-build-windows/action.yml +++ b/_doc-build-windows/action.yml @@ -143,7 +143,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -159,7 +159,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -212,7 +212,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -233,7 +233,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -255,7 +255,7 @@ runs: echo "BUILD_BACKEND=$(echo 'pip')" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append } - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -263,7 +263,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -393,7 +393,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -434,7 +434,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.add-pdf-html-docs-as-assets == 'true' }} with: level: "INFO" @@ -448,14 +448,14 @@ runs: .venv\Scripts\Activate.ps1 python ${{ github.action_path }}\..\python-utils\parse_doc_conf.py - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true' ) && (env.PDF_FILENAME == '') }} with: level: "ERROR" message: > Unable to determine PDF filename using conf.py file. - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true' ) && (env.PDF_FILENAME != '') }} with: level: "INFO" @@ -464,7 +464,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -484,7 +484,7 @@ runs: run: | echo "EXISTS_EXPECTED_BUILD_DIR=$(if (Test-Path "$env:EXPECTED_BUILD_DIR") { echo 'true' } else { echo 'false' })" | Out-File -Append -FilePath $env:GITHUB_OUTPUT -Encoding utf8 - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true') && (steps.set-exists-expected-build-directory.outputs.EXISTS_EXPECTED_BUILD_DIR == 'false') }} with: level: "ERROR" @@ -509,7 +509,7 @@ runs: run: | echo "EXISTS_EXPECTED_DOWNLOAD_DIR=$(if (Test-Path "$env:EXPECTED_DOWNLOAD_DIR") { echo 'true' } else { echo 'false' })" | Out-File -Append -FilePath $env:GITHUB_OUTPUT -Encoding utf8 - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ (inputs.add-pdf-html-docs-as-assets == 'true') && (steps.set-exists-expected-download-directory.outputs.EXISTS_EXPECTED_DOWNLOAD_DIR == 'false') }} with: level: "WARNING" @@ -547,7 +547,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.add-pdf-html-docs-as-assets == 'true' }} with: level: "INFO" @@ -573,7 +573,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/_doc-gen-canonical/action.yml b/_doc-gen-canonical/action.yml index 14265c452..aa63d8761 100644 --- a/_doc-gen-canonical/action.yml +++ b/_doc-gen-canonical/action.yml @@ -51,7 +51,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/_doc-gen-robots/action.yml b/_doc-gen-robots/action.yml index 1fb741c1d..e6e119678 100644 --- a/_doc-gen-robots/action.yml +++ b/_doc-gen-robots/action.yml @@ -45,7 +45,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/_doc-gen-sitemap/action.yml b/_doc-gen-sitemap/action.yml index 64c7f1e7c..1c79c5b12 100644 --- a/_doc-gen-sitemap/action.yml +++ b/_doc-gen-sitemap/action.yml @@ -52,7 +52,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/_pr-doc-clean/action.yml b/_pr-doc-clean/action.yml index 5b4ac13ba..73e209d8b 100644 --- a/_pr-doc-clean/action.yml +++ b/_pr-doc-clean/action.yml @@ -97,7 +97,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -144,7 +144,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -168,7 +168,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: steps.delete-pr-directory.outputs.PR_DIRECTORY_DELETED == true with: level: "INFO" diff --git a/_pr-doc-deployment/action.yml b/_pr-doc-deployment/action.yml index f4ec1678d..820a535bf 100644 --- a/_pr-doc-deployment/action.yml +++ b/_pr-doc-deployment/action.yml @@ -124,7 +124,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -187,7 +187,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -293,7 +293,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ fromJSON(steps.create-pull-directory.outputs.DEPLOYMENT_COUNT) <= fromJSON(inputs.maximum-pr-doc-deployments) }} with: level: "INFO" @@ -302,13 +302,13 @@ runs: - name: "Generate 'robots.txt' file" if: ${{ fromJSON(steps.create-pull-directory.outputs.DEPLOYMENT_COUNT) <= fromJSON(inputs.maximum-pr-doc-deployments) }} - uses: ansys/actions/_doc-gen-robots@v10.0.10 + uses: ansys/actions/_doc-gen-robots@v10.0.11 with: cname: ${{ inputs.cname }} # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ fromJSON(steps.create-pull-directory.outputs.DEPLOYMENT_COUNT) <= fromJSON(inputs.maximum-pr-doc-deployments) }} with: level: "INFO" diff --git a/_release-pypi/action.yml b/_release-pypi/action.yml index 82ac09ab1..0483f1aaa 100644 --- a/_release-pypi/action.yml +++ b/_release-pypi/action.yml @@ -107,7 +107,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.use-trusted-publisher == 'true' with: level: "ERROR" @@ -128,7 +128,7 @@ runs: echo "::notice::We recommend using trusted publishers to securely publish packages on PyPI. You should consider moving to this approach." - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: false diff --git a/_setup-python/action.yml b/_setup-python/action.yml index d69e1b3e2..550804a78 100644 --- a/_setup-python/action.yml +++ b/_setup-python/action.yml @@ -71,7 +71,7 @@ runs: echo "python_version_supported=true" >> ${GITHUB_OUTPUT} fi - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: steps.python-version-support.outputs.python_version_supported == 'false' with: level: "ERROR" diff --git a/build-library/action.yml b/build-library/action.yml index f8aa6fad3..51e813995 100644 --- a/build-library/action.yml +++ b/build-library/action.yml @@ -109,7 +109,7 @@ runs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} diff --git a/build-wheelhouse/action.yml b/build-wheelhouse/action.yml index ea401d4ee..710240989 100644 --- a/build-wheelhouse/action.yml +++ b/build-wheelhouse/action.yml @@ -156,7 +156,7 @@ runs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} @@ -401,7 +401,7 @@ runs: subject-path: ${{ inputs.library-name }}-v${{ steps.library-version.outputs.library_version }}-${{ steps.specific-target-requested.outputs.wheelhouse_target }}-${{ inputs.operating-system }}-${{ inputs.python-version }}.zip - name: Check library's dependencies license - uses: ansys/actions/check-licenses@v10.0.10 + uses: ansys/actions/check-licenses@v10.0.11 if: ${{ inputs.check-licenses == 'true' }} with: python-version: ${{ inputs.python-version }} diff --git a/check-licenses/action.yml b/check-licenses/action.yml index fa2e42c89..d9bacb686 100644 --- a/check-licenses/action.yml +++ b/check-licenses/action.yml @@ -138,7 +138,7 @@ runs: fi - name: Break if Python version is too old - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 if: steps.check-python-version.outputs.PYTHON_TOO_OLD == 'true' with: level: "ERROR" @@ -151,7 +151,7 @@ runs: if: ${{ inputs.checkout == 'true' }} - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} @@ -252,7 +252,7 @@ runs: echo "LOG_IGNORED_PACKAGES=$ignored_packages" >> ${GITHUB_OUTPUT} - name: Log ignored packages and accepted licenses - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: | diff --git a/check-vulnerabilities/action.yml b/check-vulnerabilities/action.yml index a49919969..06e0e6247 100644 --- a/check-vulnerabilities/action.yml +++ b/check-vulnerabilities/action.yml @@ -214,7 +214,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -234,7 +234,7 @@ runs: echo "BUILD_BACKEND=$(echo 'pip')" >> ${GITHUB_OUTPUT} fi - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -242,14 +242,14 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Set up python to check vulnerabilities. - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: false diff --git a/code-style/action.yml b/code-style/action.yml index 2fdbfe627..49a67b540 100644 --- a/code-style/action.yml +++ b/code-style/action.yml @@ -119,7 +119,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -139,7 +139,7 @@ runs: echo "BUILD_BACKEND=$(echo 'pip')" >> ${GITHUB_OUTPUT} fi - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -147,14 +147,14 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Set up python to check code style. - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} @@ -273,7 +273,7 @@ runs: # ------------------------------------------------------------------------ # Trigger docker-style action if docker-lint is set to true. - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.docker-lint == 'true' with: level: "INFO" @@ -282,7 +282,7 @@ runs: - name: "Run Dockerfile linting in directories 'docker' and '.devcontainer'" if: inputs.docker-lint == 'true' - uses: ansys/actions/docker-style@v10.0.10 + uses: ansys/actions/docker-style@v10.0.11 with: directory: "docker .devcontainer" recursive: ${{ inputs.docker-recursive }} @@ -291,7 +291,7 @@ runs: # ------------------------------------------------------------------------ # End action as docker-lint is set to false. - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.docker-lint == 'false' }} with: level: "INFO" diff --git a/doc-build/action.yml b/doc-build/action.yml index d79347bbb..2ba325ab8 100644 --- a/doc-build/action.yml +++ b/doc-build/action.yml @@ -211,7 +211,7 @@ runs: if: ${{ inputs.checkout == 'true' }} - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} @@ -222,7 +222,7 @@ runs: - name: Documentation build (Linux) if: ${{ runner.os == 'Linux' }} - uses: ansys/actions/_doc-build-linux@v10.0.10 + uses: ansys/actions/_doc-build-linux@v10.0.11 with: sphinxopts: ${{ inputs.sphinxopts }} dependencies: ${{ inputs.dependencies }} @@ -241,7 +241,7 @@ runs: - name: Check input (Windows) if: ${{ (runner.os == 'Windows') && (inputs.requires-xvfb == 'true') }} - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 with: level: "WARNING" message: > @@ -249,7 +249,7 @@ runs: - name: Documentation build (Windows) if: ${{ runner.os == 'Windows' }} - uses: ansys/actions/_doc-build-windows@v10.0.10 + uses: ansys/actions/_doc-build-windows@v10.0.11 with: sphinxopts: ${{ inputs.sphinxopts }} dependencies: ${{ inputs.dependencies }} diff --git a/doc-changelog/action.yml b/doc-changelog/action.yml index edf17027c..4a86d1153 100644 --- a/doc-changelog/action.yml +++ b/doc-changelog/action.yml @@ -123,7 +123,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.toml-version != '' with: level: "ERROR" @@ -144,7 +144,7 @@ runs: token: ${{ inputs.token }} - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} @@ -177,13 +177,13 @@ runs: - name: "Check pull-request title follows conventional commits style" if: ${{ (inputs.use-conventional-commits == 'true') && (env.FIRST_LETTER == 'lowercase') }} - uses: ansys/actions/check-pr-title@v10.0.10 + uses: ansys/actions/check-pr-title@v10.0.11 with: token: ${{ inputs.token }} - name: "Check pull-request title follows conventional commits style with upper case" if: ${{ (inputs.use-conventional-commits == 'true') && (env.FIRST_LETTER == 'uppercase') }} - uses: ansys/actions/check-pr-title@v10.0.10 + uses: ansys/actions/check-pr-title@v10.0.11 with: token: ${{ inputs.token }} use-upper-case: true diff --git a/doc-deploy-changelog/action.yml b/doc-deploy-changelog/action.yml index 5ca1c0a4c..847ec92b0 100644 --- a/doc-deploy-changelog/action.yml +++ b/doc-deploy-changelog/action.yml @@ -192,7 +192,7 @@ runs: fetch-depth: 0 - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} diff --git a/doc-deploy-dev/action.yml b/doc-deploy-dev/action.yml index 380c5997e..424070514 100644 --- a/doc-deploy-dev/action.yml +++ b/doc-deploy-dev/action.yml @@ -132,7 +132,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -195,7 +195,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -240,7 +240,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -265,21 +265,21 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Include a link canonical tag in old versions if not present. - name: "Include link canonical tag in pages" - uses: ansys/actions/_doc-gen-canonical@v10.0.10 + uses: ansys/actions/_doc-gen-canonical@v10.0.11 with: cname: ${{ inputs.cname }} version-directory: version # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.use-latest-index-in-landing-page == 'true' }} with: level: "INFO" @@ -326,7 +326,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -334,14 +334,14 @@ runs: no stable release is available, copy the 'dev/index.html' instead. Update all references to point to 'stable/_static' or 'dev/_static'. - - uses: ansys/actions/_doc-gen-versions-page@v10.0.10 + - uses: ansys/actions/_doc-gen-versions-page@v10.0.11 with: cname: ${{ inputs.cname }} content-element-id: ${{ inputs.content-element-id }} # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -357,7 +357,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 # Apply this step only if 'version/stable/' dir exists if: ${{ hashFiles('version/stable/' != '') }} with: @@ -367,7 +367,7 @@ runs: documentation. - name: "Generate 'sitemap.xml' file" - uses: ansys/actions/_doc-gen-sitemap@v10.0.10 + uses: ansys/actions/_doc-gen-sitemap@v10.0.11 # Apply this step only if 'version/stable/' dir exists if: ${{ hashFiles('version/stable/' != '') }} with: @@ -376,7 +376,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/doc-deploy-pr/action.yml b/doc-deploy-pr/action.yml index dba601845..795ea37af 100644 --- a/doc-deploy-pr/action.yml +++ b/doc-deploy-pr/action.yml @@ -125,7 +125,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_pr-doc-deployment@v10.0.10 + - uses: ansys/actions/_pr-doc-deployment@v10.0.11 if: github.event.pull_request.state == 'open' with: cname: ${{ inputs.cname }} @@ -140,7 +140,7 @@ runs: force-orphan: ${{ inputs.force-orphan }} maximum-pr-doc-deployments: ${{ inputs.maximum-pr-doc-deployments }} - - uses: ansys/actions/_pr-doc-clean@v10.0.10 + - uses: ansys/actions/_pr-doc-clean@v10.0.11 if: github.event.pull_request.state == 'closed' with: cname: ${{ inputs.cname }} diff --git a/doc-deploy-stable/action.yml b/doc-deploy-stable/action.yml index 8d0973d81..5110923b8 100644 --- a/doc-deploy-stable/action.yml +++ b/doc-deploy-stable/action.yml @@ -155,7 +155,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -216,7 +216,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -279,7 +279,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -336,7 +336,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -419,7 +419,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -464,21 +464,21 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Include a link canonical tag in old versions if not present. - name: "Include link canonical tag in pages" - uses: ansys/actions/_doc-gen-canonical@v10.0.10 + uses: ansys/actions/_doc-gen-canonical@v10.0.11 with: cname: ${{ inputs.cname }} version-directory: version # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.use-latest-index-in-landing-page == 'true' }} with: level: "INFO" @@ -516,7 +516,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -524,14 +524,14 @@ runs: no stable release is available, copy the 'dev/index.html' instead. Update all references to point to 'stable/_static' or 'dev/_static'. - - uses: ansys/actions/_doc-gen-versions-page@v10.0.10 + - uses: ansys/actions/_doc-gen-versions-page@v10.0.11 with: cname: ${{ inputs.cname }} content-element-id: ${{ inputs.content-element-id }} # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -547,7 +547,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -555,27 +555,27 @@ runs: documentation. - name: "Generate 'sitemap.xml' file" - uses: ansys/actions/_doc-gen-sitemap@v10.0.10 + uses: ansys/actions/_doc-gen-sitemap@v10.0.11 with: cname: ${{ inputs.cname }} html-directory: version/stable # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Generate the "robots.txt" file for guiding web crawlers (spiders) - name: "Generate 'robots.txt' file" - uses: ansys/actions/_doc-gen-robots@v10.0.10 + uses: ansys/actions/_doc-gen-robots@v10.0.11 with: cname: ${{ inputs.cname }} # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/doc-style/action.yml b/doc-style/action.yml index 56ccf6abb..996de5787 100644 --- a/doc-style/action.yml +++ b/doc-style/action.yml @@ -104,7 +104,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.toml-version != '' with: level: "ERROR" @@ -119,7 +119,7 @@ runs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 if: inputs.checkout == 'true' - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > diff --git a/docker-style/action.yml b/docker-style/action.yml index 7f838bad9..e29b786cb 100644 --- a/docker-style/action.yml +++ b/docker-style/action.yml @@ -91,7 +91,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -110,7 +110,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: steps.check-docker-directory-exists.outputs.HAS_DOCKER_DIR == 'false' with: level: "WARNING" @@ -121,7 +121,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -151,7 +151,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ !!steps.filter-input-directory.outputs.EXISTING_DIRS }} with: level: "INFO" @@ -187,14 +187,14 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ steps.filter-input-directory.outputs.NON_EXISTING_DIRS != '' && contains(steps.filter-input-directory.outputs.NON_EXISTING_DIRS, ' ') }} with: level: "WARNING" message: > Non existing directories: '${{ steps.filter-input-directory.outputs.NON_EXISTING_DIRS }}' - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ steps.filter-input-directory.outputs.NON_EXISTING_DIRS != '' && !contains(steps.filter-input-directory.outputs.NON_EXISTING_DIRS, ' ') }} with: level: "WARNING" diff --git a/hk-package-clean-except/action.yml b/hk-package-clean-except/action.yml index 570cb2c4c..46f9accdc 100644 --- a/hk-package-clean-except/action.yml +++ b/hk-package-clean-except/action.yml @@ -63,7 +63,7 @@ runs: steps: - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: false diff --git a/hk-package-clean-untagged/action.yml b/hk-package-clean-untagged/action.yml index 4ea0112ae..9ff66ff8d 100644 --- a/hk-package-clean-untagged/action.yml +++ b/hk-package-clean-untagged/action.yml @@ -59,7 +59,7 @@ runs: steps: - name: "Set up Python ${{ inputs.python-version }}" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: false diff --git a/release-github/action.yml b/release-github/action.yml index 463308b90..597f501c1 100644 --- a/release-github/action.yml +++ b/release-github/action.yml @@ -168,7 +168,7 @@ runs: using: "composite" steps: - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.toml-version != '' with: level: "ERROR" @@ -179,7 +179,7 @@ runs: want to use a specific version of ``tomli``, please set the ``tomli-version`` input accordingly. The ``toml-version`` input will be removed in v11. - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.generate_release_notes == 'true' }} with: level: "WARNING" @@ -189,7 +189,7 @@ runs: # Only one of both can be true: generate-release-notes, changelog-release-notes - name: "Sanity check on release notes" - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 if: ${{ inputs.generate-release-notes == 'true' && inputs.changelog-release-notes == 'true' }} with: level: "ERROR" @@ -202,7 +202,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -220,7 +220,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.only-code == 'false' with: level: "INFO" @@ -253,7 +253,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.only-code == 'false' with: level: "INFO" @@ -270,7 +270,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.only-code == 'false' with: level: "INFO" @@ -287,7 +287,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.only-code == 'false' with: level: "INFO" @@ -305,7 +305,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 if: inputs.additional-artifacts != '' with: level: "INFO" @@ -326,7 +326,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -337,7 +337,7 @@ runs: run: ls -R dist/ - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} diff --git a/release-pypi-private/action.yml b/release-pypi-private/action.yml index 6e1cbe752..e52b46581 100644 --- a/release-pypi-private/action.yml +++ b/release-pypi-private/action.yml @@ -119,7 +119,7 @@ runs: steps: - name: "Release to PyAnsys private index" - uses: ansys/actions/_release-pypi@v10.0.10 + uses: ansys/actions/_release-pypi@v10.0.11 with: library-name: ${{ inputs.library-name }} index-name: ${{ inputs.index-name }} diff --git a/release-pypi-public/action.yml b/release-pypi-public/action.yml index 3aa665f5b..f9efc960e 100644 --- a/release-pypi-public/action.yml +++ b/release-pypi-public/action.yml @@ -113,7 +113,7 @@ runs: # TODO: ansys/actions@v11 will enforce the use of trusted publishers - name: "Warn user if not using trusted publishers" if: ${{ inputs.use-trusted-publisher == 'false' }} - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 with: level: "WARNING" message: > @@ -122,7 +122,7 @@ runs: enabling trusted publishers releases in your project. - name: "Release to the public PyPI index" - uses: ansys/actions/_release-pypi@v10.0.10 + uses: ansys/actions/_release-pypi@v10.0.11 with: library-name: ${{ inputs.library-name }} index-name: "https://upload.pypi.org/legacy/" diff --git a/release-pypi-test/action.yml b/release-pypi-test/action.yml index c38972218..48767f505 100644 --- a/release-pypi-test/action.yml +++ b/release-pypi-test/action.yml @@ -113,7 +113,7 @@ runs: # TODO: ansys/actions@v11 will enforce the use of trusted publishers - name: "Warn user if not using trusted publishers" if: ${{ inputs.use-trusted-publisher == 'false' }} - uses: ansys/actions/_logging@v10.0.10 + uses: ansys/actions/_logging@v10.0.11 with: level: "WARNING" message: > @@ -122,7 +122,7 @@ runs: enabling trusted publishers releases in your project. - name: "Release to test PyPI index" - uses: ansys/actions/_release-pypi@v10.0.10 + uses: ansys/actions/_release-pypi@v10.0.11 with: library-name: ${{ inputs.library-name }} index-name: "https://test.pypi.org/legacy/" diff --git a/tests-pytest/action.yml b/tests-pytest/action.yml index 9b7944748..0c4b56043 100644 --- a/tests-pytest/action.yml +++ b/tests-pytest/action.yml @@ -138,7 +138,7 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -158,7 +158,7 @@ runs: echo "BUILD_BACKEND=$(echo 'pip')" >> $GITHUB_OUTPUT fi - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > @@ -166,14 +166,14 @@ runs: # ------------------------------------------------------------------------ - - uses: ansys/actions/_logging@v10.0.10 + - uses: ansys/actions/_logging@v10.0.11 with: level: "INFO" message: > Set up python to test. - name: "Set up Python" - uses: ansys/actions/_setup-python@v10.0.10 + uses: ansys/actions/_setup-python@v10.0.11 with: python-version: ${{ inputs.python-version }} use-cache: ${{ inputs.use-python-cache }} From 54d45960ae9d009b2a3f26dfa687f611a85c6da3 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Thu, 12 Jun 2025 12:05:28 +0000 Subject: [PATCH 3/3] chore: updating CHANGELOG for v10.0.11 --- doc/source/changelog.rst | 16 ++++++++++++++++ doc/source/changelog/908.added.md | 1 - 2 files changed, 16 insertions(+), 1 deletion(-) delete mode 100644 doc/source/changelog/908.added.md diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 80b805dab..e8a6d5707 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -9,6 +9,22 @@ This document contains the release notes for the Ansys Actions project. .. towncrier release notes start +`10.0.11 `_ - June 12, 2025 +=================================================================================== + +.. tab-set:: + + + .. tab-item:: Added + + .. list-table:: + :header-rows: 0 + :widths: auto + + * - Improving error message for smoke tests + - `#908 `_ + + `10.0.10 `_ - June 11, 2025 =================================================================================== diff --git a/doc/source/changelog/908.added.md b/doc/source/changelog/908.added.md deleted file mode 100644 index 1284f78db..000000000 --- a/doc/source/changelog/908.added.md +++ /dev/null @@ -1 +0,0 @@ -Improving error message for smoke tests \ No newline at end of file