Skip to content

Commit bc44fb8

Browse files
dependabot[bot]RobPasMuepyansys-ci-bot
authored
build(actions): bump the github-actions group across 12 directories with 2 updates (#1053)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roberto Pastor Muela <[email protected]> Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent 35f3add commit bc44fb8

File tree

16 files changed

+22
-21
lines changed

16 files changed

+22
-21
lines changed

.github/workflows/ci_cd_night.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
steps:
9393

9494
- name: "Download distribution artifacts"
95-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
95+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
9696
with:
9797
name: ${{ env.LIBRARY_NAME }}-artifacts
9898
path: dist

.github/workflows/ci_cd_pr_flit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
steps:
114114

115115
- name: "Download distribution artifacts"
116-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
116+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
117117
with:
118118
name: ${{ env.LIBRARY_NAME }}-artifacts
119119
path: dist

.github/workflows/ci_cd_pr_poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
steps:
114114

115115
- name: "Download distribution artifacts"
116-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
116+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
117117
with:
118118
name: ${{ env.LIBRARY_NAME }}-artifacts
119119
path: dist

.github/workflows/ci_cd_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
python -m twine check .ci/${LIBRARY_NAME}/dist/**
186186
187187
- name: "Upload distribution artifacts"
188-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
188+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
189189
with:
190190
name: ${{ env.LIBRARY_NAME }}-artifacts
191191
path: .ci/${{ env.LIBRARY_NAME }}/dist
@@ -203,13 +203,13 @@ jobs:
203203
steps:
204204

205205
- name: "Download distribution 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: dist
210210

211211
- name: "Download HTML documentation"
212-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
212+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
213213
with:
214214
name: documentation-html
215215
path: documentation-html
@@ -221,7 +221,7 @@ jobs:
221221
dest: documentation-html.zip
222222

223223
- name: "Download PDF documentation"
224-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
224+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
225225
with:
226226
name: documentation-pdf
227227
path: documentation-pdf

_doc-build-linux/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,14 +556,14 @@ runs:
556556
# ------------------------------------------------------------------------
557557

558558
- name: "Upload HTML documentation artifact"
559-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
559+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
560560
with:
561561
name: ${{ inputs.uploaded-artifact-name-prefix }}-html
562562
path: doc/_build/html
563563
retention-days: 7
564564

565565
- name: "Upload PDF documentation artifact"
566-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
566+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
567567
with:
568568
name: ${{ inputs.uploaded-artifact-name-prefix }}-pdf
569569
path: doc/_build/latex/*.pdf

_doc-build-windows/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,14 +598,14 @@ runs:
598598
Upload HTML and PDF
599599
600600
- name: Upload HTML documentation artifact
601-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
601+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
602602
with:
603603
name: ${{ inputs.uploaded-artifact-name-prefix }}-html
604604
path: doc/_build/html
605605
retention-days: 7
606606

607607
- name: Upload PDF documentation artifact
608-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
608+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
609609
with:
610610
name: ${{ inputs.uploaded-artifact-name-prefix }}-pdf
611611
path: doc/_build/latex/*.pdf

_pr-doc-deployment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ runs:
257257
258258
- name: "Download the pr documentation artifact"
259259
if: ${{ fromJSON(steps.create-pull-directory.outputs.DEPLOYMENT_COUNT) <= fromJSON(inputs.maximum-pr-doc-deployments) }}
260-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
260+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
261261
with:
262262
name: ${{ inputs.doc-artifact-name }}
263263
path: pull/${{ github.event.pull_request.number }}

_release-pypi/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ runs:
143143
${INSTALL_COMMAND} --upgrade pip 'twine<6.2.0'
144144
145145
- name: "Download the library artifacts from build-library step"
146-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
146+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
147147
with:
148148
name: ${{ inputs.library-name }}-artifacts
149149
path: ${{ inputs.library-name }}-artifacts

build-ci-wheels/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ runs:
117117
CIBW_ARCHS: ${{ inputs.cibw-archs }}
118118

119119
- name: "Upload wheel"
120-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
120+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
121121
with:
122122
name: ${{ inputs.library-name }}-${{ inputs.operating-system }}-${{ inputs.python-version }}-wheels
123123
path: ./wheelhouse/*.whl

build-library/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ runs:
197197
python -m twine check dist/*
198198
199199
- name: "Upload distribution artifacts to GitHub artifacts"
200-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
200+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
201201
with:
202202
name: ${{ inputs.library-name }}-artifacts
203203
path: dist/

0 commit comments

Comments
 (0)