Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump ansys/actions from 5.1 to 6.0 in the actions group #275

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: "Code style"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/code-style@v5.1
- uses: ansys/actions/code-style@v6.0
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Running documentation style checks"
uses: ansys/actions/doc-style@v5.1
uses: ansys/actions/doc-style@v6.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
vale-version: "3.4.1"
Expand All @@ -43,15 +43,15 @@ jobs:
name: "Run commit style checks"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/commit-style@v5.1
- uses: ansys/actions/commit-style@v6.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

branch-name-style:
name: "Run branch name style checks"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/branch-name-style@v5.1
- uses: ansys/actions/branch-name-style@v6.0

smoke-tests:
name: "Build and Smoke tests"
Expand All @@ -63,7 +63,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: ansys/actions/build-wheelhouse@v5.1
- uses: ansys/actions/build-wheelhouse@v6.0
with:
library-name: ${{ env.LIBRARY_NAME }}
operating-system: ${{ matrix.os }}
Expand All @@ -79,7 +79,7 @@ jobs:
python-version: ['3.10', '3.11', '3.12']
fail-fast: false
steps:
- uses: ansys/actions/tests-pytest@v5.1
- uses: ansys/actions/tests-pytest@v6.0
with:
pytest-markers: '-m "not developer_only"'

Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
needs: [doc-style]
steps:
- uses: ansys/actions/doc-build@v5.1
- uses: ansys/actions/doc-build@v6.0
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
check-links: false
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: ubuntu-latest
needs: [doc-build, tests]
steps:
- uses: ansys/actions/build-library@v5.1
- uses: ansys/actions/build-library@v6.0
with:
library-name: ${{ env.LIBRARY_NAME }}
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand All @@ -108,7 +108,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-library]
steps:
- uses: ansys/actions/doc-deploy-dev@v5.1
- uses: ansys/actions/doc-deploy-dev@v6.0
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -120,21 +120,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Release to the private PyPI repository"
uses: ansys/actions/release-pypi-private@v5.1
uses: ansys/actions/release-pypi-private@v6.0
with:
library-name: ${{ env.LIBRARY_NAME }}
twine-username: "__token__"
twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}

- name: "Release to the public PyPI repository"
uses: ansys/actions/release-pypi-public@v5.1
uses: ansys/actions/release-pypi-public@v6.0
with:
library-name: ${{ env.LIBRARY_NAME }}
twine-username: "__token__"
twine-token: ${{ secrets.PYPI_TOKEN }}

- name: "Release to GitHub"
uses: ansys/actions/release-github@v5.1
uses: ansys/actions/release-github@v6.0
with:
library-name: ${{ env.LIBRARY_NAME }}

Expand All @@ -145,7 +145,7 @@ jobs:
needs: [release]
steps:
- name: Deploy the stable documentation
uses: ansys/actions/doc-deploy-stable@v5.1
uses: ansys/actions/doc-deploy-stable@v6.0
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Loading