Skip to content

Commit

Permalink
maint: bump ansys/actions from 5 to 6 (#366)
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: Roberto Pastor Muela <[email protected]>
  • Loading branch information
dependabot[bot] and RobPasMue authored Apr 18, 2024
1 parent e2ec2ac commit 4d656df
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Run Ansys code style checks"
uses: ansys/actions/code-style@v5
uses: ansys/actions/code-style@v6
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

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

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

Expand All @@ -57,7 +57,7 @@ jobs:
needs: build-library
steps:
- name: "Deploy developers documentation"
uses: ansys/actions/doc-deploy-dev@v5
uses: ansys/actions/doc-deploy-dev@v6
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -69,7 +69,7 @@ jobs:
needs: release
steps:
- name: "Deploy stable documentation"
uses: ansys/actions/doc-deploy-stable@v5
uses: ansys/actions/doc-deploy-stable@v6
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -91,7 +91,7 @@ jobs:
os: macos-latest
steps:
- name: "Build wheelhouse and perform smoke test"
uses: ansys/actions/build-wheelhouse@v5
uses: ansys/actions/build-wheelhouse@v6
with:
library-name: ${{ env.PACKAGE_NAME }}
operating-system: ${{ matrix.os }}
Expand All @@ -103,7 +103,7 @@ jobs:
needs: [doc-build, smoke-tests]
steps:
- name: "Build library source and wheel artifacts"
uses: ansys/actions/build-library@v5
uses: ansys/actions/build-library@v6
with:
library-name: ${{ env.PACKAGE_NAME }}

Expand All @@ -115,21 +115,21 @@ jobs:
steps:

- name: "Release to the private PyPI repository"
uses: ansys/actions/release-pypi-private@v5
uses: ansys/actions/release-pypi-private@v6
with:
library-name: ${{ env.PACKAGE_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
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 }}

Expand All @@ -140,7 +140,7 @@ jobs:
needs: doc-deploy-development
steps:
- name: "Deploy the latest documentation index"
uses: ansys/actions/doc-deploy-index@v5
uses: ansys/actions/doc-deploy-index@v6
with:
cname: ${{ env.DOCUMENTATION_CNAME }}/version/dev
index-name: "ansys-sphinx-theme-vdev"
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
echo "VERSION_MEILI=$VERSION_MEILI" >> $GITHUB_ENV
- name: "Deploy the latest documentation index"
uses: ansys/actions/doc-deploy-index@v5
uses: ansys/actions/doc-deploy-index@v6
with:
cname: ${{ env.DOCUMENTATION_CNAME }}/version/${{ env.VERSION }}
index-name: ansys-sphinx-theme-v${{ env.VERSION_MEILI }}
Expand Down

0 comments on commit 4d656df

Please sign in to comment.