Skip to content

Commit

Permalink
Bump pyansys/actions from 2 to 3 (#58)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lucas Boucinha <[email protected]>
  • Loading branch information
dependabot[bot] and lboucin authored Jan 18, 2023
1 parent 3fdbc8b commit d4ba765
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Running documentation style checks"
uses: pyansys/actions/doc-style@v2
uses: pyansys/actions/doc-style@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v3

- name: "Set up Python"
uses: pyansys/actions/_setup-python@main
uses: pyansys/actions/_setup-python@v3
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
use-cache: true
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Build library source and wheel artifacts"
uses: pyansys/actions/build-library@v2
uses: pyansys/actions/build-library@v3
with:
library-name: "pytwin"
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand All @@ -89,7 +89,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Run pytest
uses: pyansys/actions/tests-pytest@v2
uses: pyansys/actions/tests-pytest@v3
with:
python-version: ${{ matrix.python-version }}
pytest-extra-args: "--cov=pytwin --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html"
Expand All @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Validate third party licenses"
uses: pyansys/actions/check-licenses@v2
uses: pyansys/actions/check-licenses@v3
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -112,7 +112,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- name: "Release to the public PyPI repository"
uses: pyansys/actions/release-pypi-public@v2
uses: pyansys/actions/release-pypi-public@v3
with:
library-name: "pytwin"
twine-username: "__token__"
Expand All @@ -126,7 +126,7 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: "Deploy the latest documentation"
uses: pyansys/actions/doc-deploy-dev@v2
uses: pyansys/actions/doc-deploy-dev@v3
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -138,7 +138,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- name: "Deploy the stable documentation"
uses: pyansys/actions/doc-deploy-stable@v2
uses: pyansys/actions/doc-deploy-stable@v3
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d4ba765

Please sign in to comment.