Skip to content

Commit 31ee0f4

Browse files
chore: bump ansys/actions from 9.0.2 to 9.0.6 (#799)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com>
1 parent e06ff3a commit 31ee0f4

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/ci_cd.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
pull-requests: write
5555
steps:
5656

57-
- uses: ansys/actions/check-pr-title@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
57+
- uses: ansys/actions/check-pr-title@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
5858
with:
5959
token: ${{ secrets.GITHUB_TOKEN }}
6060

61-
- uses: ansys/actions/doc-changelog@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
61+
- uses: ansys/actions/doc-changelog@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
6262
if: ${{ github.event_name == 'pull_request' }}
6363
with:
6464
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
@@ -75,7 +75,7 @@ jobs:
7575
contents: write
7676
pull-requests: write
7777
steps:
78-
- uses: ansys/actions/doc-deploy-changelog@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
78+
- uses: ansys/actions/doc-deploy-changelog@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
7979
with:
8080
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
8181
bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
@@ -87,15 +87,15 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- name: Check commit name
90-
uses: ansys/actions/check-pr-title@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
90+
uses: ansys/actions/check-pr-title@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
9191
with:
9292
token: ${{ secrets.GITHUB_TOKEN }}
9393

9494
code-style:
9595
name: "Code style"
9696
runs-on: ubuntu-latest
9797
steps:
98-
- uses: ansys/actions/code-style@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
98+
- uses: ansys/actions/code-style@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
9999
with:
100100
python-version: ${{ env.MAIN_PYTHON_VERSION }}
101101

@@ -134,7 +134,7 @@ jobs:
134134
runs-on: ubuntu-latest
135135
steps:
136136
- name: PyAnsys documentation style checks
137-
uses: ansys/actions/doc-style@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
137+
uses: ansys/actions/doc-style@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
138138
with:
139139
token: ${{ secrets.GITHUB_TOKEN }}
140140

@@ -249,7 +249,7 @@ jobs:
249249
os: [windows-latest, ubuntu-latest]
250250
python-version: ['3.10', '3.11', '3.12', '3.13']
251251
steps:
252-
- uses: ansys/actions/build-wheelhouse@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
252+
- uses: ansys/actions/build-wheelhouse@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
253253
with:
254254
library-name: ${{ env.PACKAGE_NAME }}
255255
operating-system: ${{ matrix.os }}
@@ -347,7 +347,7 @@ jobs:
347347
needs: [doc, tests, run-testing]
348348
runs-on: ubuntu-latest
349349
steps:
350-
- uses: ansys/actions/build-library@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
350+
- uses: ansys/actions/build-library@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
351351
with:
352352
library-name: ${{ env.PACKAGE_NAME }}
353353
python-version: ${{ env.MAIN_PYTHON_VERSION }}
@@ -361,14 +361,14 @@ jobs:
361361
contents: write
362362
steps:
363363
- name: "Release to the public PyPI repository"
364-
uses: ansys/actions/release-pypi-public@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
364+
uses: ansys/actions/release-pypi-public@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
365365
with:
366366
library-name: ${{ env.PACKAGE_NAME }}
367367
twine-username: "__token__"
368368
twine-token: ${{ secrets.PYPI_TOKEN }}
369369

370370
- name: "Release to GitHub"
371-
uses: ansys/actions/release-github@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
371+
uses: ansys/actions/release-github@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
372372
with:
373373
library-name: ${{ env.PACKAGE_NAME }}
374374
token: ${{ secrets.GITHUB_TOKEN }}
@@ -379,7 +379,7 @@ jobs:
379379
runs-on: ubuntu-latest
380380
needs: [build-library]
381381
steps:
382-
- uses: ansys/actions/doc-deploy-dev@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
382+
- uses: ansys/actions/doc-deploy-dev@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
383383
with:
384384
cname: ${{ env.DOCUMENTATION_CNAME }}
385385
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
@@ -392,7 +392,7 @@ jobs:
392392
runs-on: ubuntu-latest
393393
needs: [release]
394394
steps:
395-
- uses: ansys/actions/doc-deploy-stable@4f15ff3ab1183912ce862d51b8c66ea124b052a1 # v9.0.2
395+
- uses: ansys/actions/doc-deploy-stable@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
396396
with:
397397
cname: ${{ env.DOCUMENTATION_CNAME }}
398398
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}

doc/changelog/799.maintenance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bump ansys/actions from 9.0.2 to 9.0.6

0 commit comments

Comments
 (0)