From 1a1a9acaf777089571abe0599e276dadd8ce6c98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 23:08:30 +0000 Subject: [PATCH] maint: bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/labeler](https://github.com/actions/labeler) | `5.0.0` | `6.0.1` | | [ansys/actions](https://github.com/ansys/actions) | `9` | `10` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `5` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/labeler` from 5.0.0 to 6.0.1 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5.0.0...v6.0.1) Updates `ansys/actions` from 9 to 10 - [Release notes](https://github.com/ansys/actions/releases) - [Changelog](https://github.com/ansys/actions/blob/main/CHANGELOG.md) - [Commits](https://github.com/ansys/actions/compare/v9...v10) Updates `astral-sh/setup-uv` from 5 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v5...v7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/labeler dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: ansys/actions dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 279da41..16b263b 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -28,7 +28,7 @@ jobs: if: | github.event.type != 'labeled' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Update labels" uses: micnncim/action-label-syncer@v1 @@ -36,7 +36,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: "Label pull-request" - uses: actions/labeler@v5.0.0 + uses: actions/labeler@v6.0.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -44,7 +44,7 @@ jobs: name: "Code style" runs-on: ubuntu-latest steps: - - uses: ansys/actions/code-style@v9 + - uses: ansys/actions/code-style@v10 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} use-python-cache: false @@ -53,7 +53,7 @@ jobs: name: "Documentation Style Check" runs-on: ubuntu-latest steps: - - uses: ansys/actions/doc-style@v9 + - uses: ansys/actions/doc-style@v10 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -64,12 +64,12 @@ jobs: steps: - name: "Checkout project" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: pyworkbench-examples - name: "Checkout examples data" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: ansys/example-data path: data @@ -80,7 +80,7 @@ jobs: Get-ChildItem -Path "pyworkbench-examples\examples" -Recurse - name: "Setup uv with Python ${{ env.MAIN_PYTHON_VERSION }}" - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 with: enable-cache: true cache-dependency-glob: | @@ -111,7 +111,7 @@ jobs: REMOTING_SERVER_ADDRESS: "localhost" - name: "Upload HTML artifacts" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: documentation-html path: pyworkbench-examples/doc/_build/html @@ -150,7 +150,7 @@ jobs: runs-on: ubuntu-latest needs: doc-build steps: - - uses: ansys/actions/doc-deploy-dev@v9 + - uses: ansys/actions/doc-deploy-dev@v10 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -164,7 +164,7 @@ jobs: needs: doc-build steps: - name: Deploy the stable documentation - uses: ansys/actions/doc-deploy-stable@v9 + uses: ansys/actions/doc-deploy-stable@v10 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}