Skip to content

Commit

Permalink
Bump pyansys/actions from 2 to 3 (#176)
Browse files Browse the repository at this point in the history
Bumps [pyansys/actions](https://github.com/pyansys/actions) from 2 to 3.
- [Release notes](https://github.com/pyansys/actions/releases)
- [Commits](ansys/actions@v2...v3)

---
updated-dependencies:
- dependency-name: pyansys/actions
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 11, 2023
1 parent 48ec5a8 commit fee5beb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Run PyAnsys code style checks"
uses: pyansys/actions/code-style@v2
uses: pyansys/actions/code-style@v3
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Run Ansys documentation style checks"
uses: pyansys/actions/doc-style@v2
uses: pyansys/actions/doc-style@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -43,7 +43,7 @@ jobs:
needs: doc-style
steps:
- name: "Run Ansys documentation building action"
uses: pyansys/actions/doc-build@v2
uses: pyansys/actions/doc-build@v3
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -54,7 +54,7 @@ jobs:
needs: doc-build
steps:
- name: "Deploy developers 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 @@ -66,7 +66,7 @@ jobs:
needs: doc-deploy-development
steps:
- name: "Deploy 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 }}
Expand All @@ -78,7 +78,7 @@ jobs:
needs: doc-deploy-stable
steps:
- name: "Build library source and wheel artifacts"
uses: pyansys/actions/build-library@v2
uses: pyansys/actions/build-library@v3
with:
library-name: ${{ env.PACKAGE_NAME }}

Expand All @@ -90,20 +90,20 @@ jobs:
steps:

- name: "Release to the private PyPI repository"
uses: pyansys/actions/release-pypi-private@v2
uses: pyansys/actions/release-pypi-private@v3
with:
library-name: ${{ env.PACKAGE_NAME }}
twine-username: "__token__"
twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}

- name: "Release to the public PyPI repository"
uses: pyansys/actions/release-pypi-public@v2
uses: pyansys/actions/release-pypi-public@v3
with:
library-name: ${{ env.PACKAGE_NAME }}
twine-username: "__token__"
twine-token: ${{ secrets.PYPI_TOKEN }}

- name: "Release to GitHub"
uses: pyansys/actions/release-github@v2
uses: pyansys/actions/release-github@v3
with:
library-name: ${{ env.PACKAGE_NAME }}

0 comments on commit fee5beb

Please sign in to comment.