Skip to content

Commit fd7780f

Browse files
ci: bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6.7.0` | `7.1.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `5.0.0` | | [ansys/actions](https://github.com/ansys/actions) | `10.1.2` | `10.1.4` | | [docker/login-action](https://github.com/docker/login-action) | `3.5.0` | `3.6.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5.0.0` | `6.0.0` | Updates `astral-sh/setup-uv` from 6.7.0 to 7.1.2 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@b75a909...8585678) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `ansys/actions` from 10.1.2 to 10.1.4 - [Release notes](https://github.com/ansys/actions/releases) - [Changelog](https://github.com/ansys/actions/blob/main/CHANGELOG.md) - [Commits](ansys/actions@9de5aa7...c2fa7c9) Updates `docker/login-action` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@184bdaa...5e57cd1) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: 7.1.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: ansys/actions dependency-version: 10.1.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7ab655d commit fd7780f

File tree

4 files changed

+36
-36
lines changed

4 files changed

+36
-36
lines changed

.github/workflows/ci_cd_main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929

3030
- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
31-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
31+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
3232
with:
3333
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3434

@@ -59,14 +59,14 @@ jobs:
5959
if (Test-Path $examples_folder){ Dir -Recurse $examples_folder | Get-Childitem} else {Write-Host "WARNING: Expecting an examples folder in $examples_folder. Interactive plots will not work..."}
6060
6161
- name: Upload HTML documentation artifact
62-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
62+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6363
with:
6464
name: documentation-html
6565
path: doc/_build/html
6666
retention-days: 7
6767

6868
- name: Upload PDF documentation artifact
69-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
69+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7070
with:
7171
name: documentation-pdf
7272
path: doc/_build/latex/*.pdf
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
needs: doc-build
7979
steps:
80-
- uses: ansys/actions/doc-deploy-dev@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
80+
- uses: ansys/actions/doc-deploy-dev@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
8181
with:
8282
doc-artifact-name: "documentation-html"
8383
cname: ${{ env.DOCUMENTATION_CNAME }}

.github/workflows/ci_cd_night.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3939

4040
- name: "Set up uv"
41-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
41+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

@@ -50,7 +50,7 @@ jobs:
5050
ANSYS_VERSION : ${{ env.ANSYS_VERSION }}
5151

5252
- name: Login to GitHub Container Registry
53-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
53+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5454
if: matrix.tests.needs_fluent
5555
with:
5656
registry: ghcr.io
@@ -78,7 +78,7 @@ jobs:
7878
name: Documentation Style Check
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: ansys/actions/doc-style@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
81+
- uses: ansys/actions/doc-style@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
8282
with:
8383
token: ${{ secrets.GITHUB_TOKEN }}
8484

@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9494

9595
- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
96-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
96+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
9797
with:
9898
python-version: ${{ env.MAIN_PYTHON_VERSION }}
9999

@@ -124,14 +124,14 @@ jobs:
124124
if (Test-Path $examples_folder){ Dir -Recurse $examples_folder | Get-Childitem} else {Write-Host "WARNING: Expecting an examples folder in $examples_folder. Interactive plots will not work..."}
125125
126126
- name: Upload HTML documentation artifact
127-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
127+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
128128
with:
129129
name: documentation-html
130130
path: doc/_build/html
131131
retention-days: 7
132132

133133
- name: Upload PDF documentation artifact
134-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
134+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
135135
with:
136136
name: documentation-pdf
137137
path: doc/_build/latex/*.pdf
@@ -142,7 +142,7 @@ jobs:
142142
runs-on: ubuntu-latest
143143
needs: doc-build
144144
steps:
145-
- uses: ansys/actions/doc-deploy-dev@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
145+
- uses: ansys/actions/doc-deploy-dev@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
146146
with:
147147
doc-artifact-name: "documentation-html"
148148
cname: ${{ env.DOCUMENTATION_CNAME }}

.github/workflows/ci_cd_pr.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
pull-requests: write
5050
steps:
5151

52-
- uses: ansys/actions/check-pr-title@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
52+
- uses: ansys/actions/check-pr-title@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
5353
with:
5454
token: ${{ secrets.GITHUB_TOKEN }}
5555

56-
- uses: ansys/actions/doc-changelog@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
56+
- uses: ansys/actions/doc-changelog@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
5757
with:
5858
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
5959
use-conventional-commits: true
@@ -66,15 +66,15 @@ jobs:
6666
runs-on: ubuntu-latest
6767
needs: changelog-fragment
6868
steps:
69-
- uses: ansys/actions/code-style@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
69+
- uses: ansys/actions/code-style@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
7070
with:
7171
python-version: ${{ env.MAIN_PYTHON_VERSION }}
7272

7373
vulnerabilities:
7474
name: Vulnerabilities
7575
runs-on: ubuntu-latest
7676
steps:
77-
- uses: ansys/actions/check-vulnerabilities@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
77+
- uses: ansys/actions/check-vulnerabilities@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
7878
with:
7979
python-version: ${{ env.MAIN_PYTHON_VERSION }}
8080
python-package-name: ${{ env.LIBRARY_NAME }}
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ubuntu-latest
8787
needs: changelog-fragment
8888
steps:
89-
- uses: ansys/actions/doc-style@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
89+
- uses: ansys/actions/doc-style@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
9090
with:
9191
token: ${{ secrets.GITHUB_TOKEN }}
9292

@@ -100,7 +100,7 @@ jobs:
100100
os: [ubuntu-latest, windows-latest]
101101
python-version: ['3.10', '3.11', '3.12']
102102
steps:
103-
- uses: ansys/actions/build-wheelhouse@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
103+
- uses: ansys/actions/build-wheelhouse@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
104104
with:
105105
library-name: ${{ env.LIBRARY_NAME }}
106106
operating-system: ${{ matrix.os }}
@@ -118,7 +118,7 @@ jobs:
118118
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
119119

120120
- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
121-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
121+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
122122
with:
123123
python-version: ${{ env.MAIN_PYTHON_VERSION }}
124124

@@ -149,14 +149,14 @@ jobs:
149149
if (Test-Path $examples_folder){ Dir -Recurse $examples_folder | Get-Childitem} else {Write-Host "WARNING: Expecting an examples folder in $examples_folder. Interactive plots will not work..."}
150150
151151
- name: Upload HTML documentation artifact
152-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
152+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
153153
with:
154154
name: documentation-html
155155
path: doc/_build/html
156156
retention-days: 7
157157

158158
- name: Upload PDF documentation artifact
159-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
159+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
160160
with:
161161
name: documentation-pdf
162162
path: doc/_build/latex/*.pdf
@@ -180,7 +180,7 @@ jobs:
180180
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
181181

182182
- name: "Set up uv"
183-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
183+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
184184
with:
185185
python-version: ${{ matrix.python-version }}
186186

@@ -192,7 +192,7 @@ jobs:
192192
ANSYS_VERSION : ${{ env.ANSYS_VERSION }}
193193

194194
- name: Login to GitHub Container Registry
195-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
195+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
196196
if: matrix.tests.needs_fluent
197197
with:
198198
registry: ghcr.io
@@ -221,7 +221,7 @@ jobs:
221221
runs-on: ubuntu-latest
222222
# needs: [wheelhouse, doc-build, tests]
223223
steps:
224-
- uses: ansys/actions/build-library@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
224+
- uses: ansys/actions/build-library@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
225225
with:
226226
library-name: ${{ env.LIBRARY_NAME }}
227227
python-version: ${{ env.MAIN_PYTHON_VERSION }}

.github/workflows/ci_cd_release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
contents: write
2929
pull-requests: write
3030
steps:
31-
- uses: ansys/actions/doc-deploy-changelog@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
31+
- uses: ansys/actions/doc-deploy-changelog@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
3232
with:
3333
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
3434
bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
needs: changelog-deployment
4141
steps:
42-
- uses: ansys/actions/code-style@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
42+
- uses: ansys/actions/code-style@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
4343
with:
4444
python-version: ${{ env.MAIN_PYTHON_VERSION }}
4545

@@ -49,7 +49,7 @@ jobs:
4949
needs: changelog-deployment
5050
steps:
5151
- name: "Running documentation style checks"
52-
uses: ansys/actions/doc-style@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
52+
uses: ansys/actions/doc-style@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
5353
with:
5454
token: ${{ secrets.GITHUB_TOKEN }}
5555

@@ -63,7 +63,7 @@ jobs:
6363
os: [ubuntu-latest, windows-latest]
6464
python-version: ['3.10', '3.11', '3.12']
6565
steps:
66-
- uses: ansys/actions/build-wheelhouse@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
66+
- uses: ansys/actions/build-wheelhouse@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
6767
with:
6868
library-name: ${{ env.LIBRARY_NAME }}
6969
operating-system: ${{ matrix.os }}
@@ -81,7 +81,7 @@ jobs:
8181
uses: actions/checkout@v5
8282

8383
- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
84-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
84+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
8585
with:
8686
python-version: ${{ env.MAIN_PYTHON_VERSION }}
8787

@@ -112,14 +112,14 @@ jobs:
112112
if (Test-Path $examples_folder){ Dir -Recurse $examples_folder | Get-Childitem} else {Write-Host "WARNING: Expecting an examples folder in $examples_folder. Interactive plots will not work..."}
113113
114114
- name: Upload HTML documentation artifact
115-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
115+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
116116
with:
117117
name: documentation-html
118118
path: doc/_build/html
119119
retention-days: 7
120120

121121
- name: Upload PDF documentation artifact
122-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
122+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
123123
with:
124124
name: documentation-pdf
125125
path: doc/_build/latex/*.pdf
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
144144

145145
- name: "Set up uv"
146-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
146+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
147147
with:
148148
python-version: ${{ matrix.python-version }}
149149

@@ -155,7 +155,7 @@ jobs:
155155
ANSYS_VERSION : ${{ env.ANSYS_VERSION }}
156156

157157
- name: Login to GitHub Container Registry
158-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
158+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
159159
if: matrix.tests.needs_fluent
160160
with:
161161
registry: ghcr.io
@@ -186,7 +186,7 @@ jobs:
186186
runs-on: ubuntu-latest
187187
needs: [wheelhouse, doc-build, tests]
188188
steps:
189-
- uses: ansys/actions/build-library@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
189+
- uses: ansys/actions/build-library@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
190190
with:
191191
library-name: ${{ env.LIBRARY_NAME }}
192192
python-version: ${{ env.MAIN_PYTHON_VERSION }}
@@ -203,7 +203,7 @@ jobs:
203203
steps:
204204

205205
- name: Download all artifacts
206-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
206+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
207207
with:
208208
name: ${{ env.LIBRARY_NAME }}-artifacts
209209
path: ${{ env.LIBRARY_NAME }}-artifacts
@@ -217,7 +217,7 @@ jobs:
217217
skip-existing: false
218218

219219
- name: Release to GitHub
220-
uses: ansys/actions/release-github@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
220+
uses: ansys/actions/release-github@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
221221
with:
222222
library-name: ${{ env.LIBRARY_NAME }}
223223
token: ${{ secrets.GITHUB_TOKEN }}
@@ -227,7 +227,7 @@ jobs:
227227
runs-on: ubuntu-latest
228228
needs: release
229229
steps:
230-
- uses: ansys/actions/doc-deploy-stable@9de5aa715cf3c98a237b08e1a308c08599223c42 # v10.1.2
230+
- uses: ansys/actions/doc-deploy-stable@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
231231
with:
232232
doc-artifact-name: "documentation-html"
233233
cname: ${{ env.DOCUMENTATION_CNAME }}

0 commit comments

Comments
 (0)