diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 67f5f6ff81..77d9736718 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -24,7 +24,7 @@ jobs: name: "Code style" runs-on: ubuntu-latest steps: - - 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 }} @@ -128,7 +128,7 @@ jobs: os: [windows-latest, ubuntu-latest] python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - - uses: ansys/actions/build-wheelhouse@v5 + - uses: ansys/actions/build-wheelhouse@v6 with: library-name: ${{ env.PACKAGE_NAME }} operating-system: ${{ matrix.os }} @@ -193,7 +193,7 @@ jobs: needs: [doc, tests] runs-on: ubuntu-latest steps: - - uses: ansys/actions/build-library@v5 + - uses: ansys/actions/build-library@v6 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -205,14 +205,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 }} @@ -222,7 +222,7 @@ jobs: runs-on: ubuntu-latest needs: [build-library] steps: - - uses: ansys/actions/doc-deploy-dev@v5 + - uses: ansys/actions/doc-deploy-dev@v6 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -233,7 +233,7 @@ jobs: runs-on: ubuntu-latest needs: [release] steps: - - uses: ansys/actions/doc-deploy-stable@v5 + - uses: ansys/actions/doc-deploy-stable@v6 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0c543d9d62..33c1236d9e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,7 @@ repos: rev: v2.2.5 hooks: - id: codespell - args: ["--ignore-words", "doc/styles/Vocab/ANSYS/accept.txt"] + args: ["--ignore-words", "doc/styles/config/vocabularies/ANSYS/accept.txt"] - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 diff --git a/doc/.vale.ini b/doc/.vale.ini index 344c6c4a70..3f3bd4170f 100644 --- a/doc/.vale.ini +++ b/doc/.vale.ini @@ -29,4 +29,5 @@ BasedOnStyles = Vale, Google # Removing Google-specific rule - Not applicable under some circumstances Google.WordList = NO -Google.Colons = NO \ No newline at end of file +Google.Colons = NO +Vale.Terms = NO \ No newline at end of file diff --git a/doc/styles/.gitignore b/doc/styles/.gitignore index 080f12aa43..df3814a97c 100644 --- a/doc/styles/.gitignore +++ b/doc/styles/.gitignore @@ -1,4 +1,6 @@ * -!Vocab -!Vocab/** +!config +!config/vocabularies +!config/vocabularies/ANSYS +!config/vocabularies/ANSYS/** !.gitignore \ No newline at end of file diff --git a/doc/styles/Vocab/ANSYS/accept.txt b/doc/styles/config/vocabularies/ANSYS/accept.txt similarity index 100% rename from doc/styles/Vocab/ANSYS/accept.txt rename to doc/styles/config/vocabularies/ANSYS/accept.txt diff --git a/doc/styles/Vocab/ANSYS/reject.txt b/doc/styles/config/vocabularies/ANSYS/reject.txt similarity index 100% rename from doc/styles/Vocab/ANSYS/reject.txt rename to doc/styles/config/vocabularies/ANSYS/reject.txt