From bcc5d496c883c72d9c0fb19b7fec23a9d6b90c13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 01:49:23 +0000 Subject: [PATCH 1/2] Bump ansys/actions from 5 to 6 Bumps [ansys/actions](https://github.com/ansys/actions) from 5 to 6. - [Release notes](https://github.com/ansys/actions/releases) - [Commits](https://github.com/ansys/actions/compare/v5...v6) --- updated-dependencies: - dependency-name: ansys/actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd.yml | 14 +++++++------- .github/workflows/package_cleanup.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 3677e2e043..a70b7d4c03 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -69,7 +69,7 @@ jobs: name: "Documentation style" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@v5 + - uses: ansys/actions/doc-style@v6 with: token: ${{ secrets.GITHUB_TOKEN }} vale-version: "3.1.0" @@ -88,7 +88,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 }} @@ -394,7 +394,7 @@ jobs: timeout-minutes: 30 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 }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -406,14 +406,14 @@ jobs: runs-on: ubuntu-latest steps: - 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 }} @@ -424,7 +424,7 @@ jobs: needs: [build] steps: - name: Deploy the latest documentation - uses: ansys/actions/doc-deploy-dev@v5 + uses: ansys/actions/doc-deploy-dev@v6 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -437,7 +437,7 @@ jobs: needs: [release] steps: - name: Deploy the 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 }} diff --git a/.github/workflows/package_cleanup.yml b/.github/workflows/package_cleanup.yml index 60288b5159..6bd08d27bf 100644 --- a/.github/workflows/package_cleanup.yml +++ b/.github/workflows/package_cleanup.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Delete untagged package versions" - uses: ansys/actions/hk-package-clean-untagged@v5 + uses: ansys/actions/hk-package-clean-untagged@v6 with: package-org: 'ansys' package-name: 'acp' From 0baace8fc99fbb8966ee8ce68ca01093bd6bd399 Mon Sep 17 00:00:00 2001 From: Dominik Gresch Date: Mon, 22 Apr 2024 16:43:37 +0200 Subject: [PATCH 2/2] Remove pinned vale version --- .github/workflows/ci_cd.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index a70b7d4c03..25fd68baf4 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -72,7 +72,6 @@ jobs: - uses: ansys/actions/doc-style@v6 with: token: ${{ secrets.GITHUB_TOKEN }} - vale-version: "3.1.0" build-wheelhouse: name: "Build wheelhouse"