diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e26945d9..3574e857 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Running documentation style checks" - uses: ansys/actions/doc-style@v6 + uses: ansys/actions/doc-style@v7 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -37,7 +37,7 @@ jobs: uses: actions/checkout@v4 - name: "Set up Python" - uses: ansys/actions/_setup-python@v6 + uses: ansys/actions/_setup-python@v7 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-cache: true @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Build library source and wheel artifacts" - uses: ansys/actions/build-library@v6 + uses: ansys/actions/build-library@v7 with: library-name: "pytwin" python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -112,7 +112,7 @@ jobs: uses: pyvista/setup-headless-display-action@v2 - name: Run pytest - uses: ansys/actions/tests-pytest@v6 + uses: ansys/actions/tests-pytest@v7 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" @@ -134,7 +134,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Validate third party licenses" - uses: ansys/actions/check-licenses@v6 + uses: ansys/actions/check-licenses@v7 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -145,7 +145,7 @@ jobs: if: github.event_name == 'push' && contains(github.ref, 'refs/tags') steps: - name: "Release to the public PyPI repository" - uses: ansys/actions/release-pypi-public@v6 + uses: ansys/actions/release-pypi-public@v7 with: library-name: "pytwin" twine-username: "__token__" @@ -159,7 +159,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: "Deploy the latest documentation" - uses: ansys/actions/doc-deploy-dev@v6 + uses: ansys/actions/doc-deploy-dev@v7 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -171,7 +171,7 @@ jobs: if: github.event_name == 'push' && contains(github.ref, 'refs/tags') steps: - name: "Deploy the stable documentation" - uses: ansys/actions/doc-deploy-stable@v6 + uses: ansys/actions/doc-deploy-stable@v7 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }}