Skip to content

Commit de933b1

Browse files
chore(deps): bump actions/download-artifact from 5 to 8 in /actions/smart-download (#668)
* chore(deps): bump actions/download-artifact in /actions/smart-download Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update actions/download-artifact to v8.0.1 in smart-download action --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pavel Anikin <snwteam5@gmail.com>
1 parent 96aa39c commit de933b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

actions/smart-download/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ runs:
2424
steps:
2525
- name: Download by name
2626
if: ${{ inputs.name != '' }}
27-
uses: actions/download-artifact@v5
27+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c #v8.0.1
2828
with:
2929
name: ${{ inputs.name }}
3030
path: ${{ inputs.path }}
3131

3232
- name: Download by IDs
3333
if: ${{ inputs.artifact-ids != '' }}
34-
uses: actions/download-artifact@v5
34+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c #v8.0.1
3535
with:
3636
artifact-ids: ${{ inputs.artifact-ids }}
3737
path: ${{ inputs.path }}
3838

3939
- name: Download by pattern
4040
if: ${{ inputs.pattern != '' }}
41-
uses: actions/download-artifact@v5
41+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c #v8.0.1
4242
with:
4343
pattern: ${{ inputs.pattern }}
4444
path: ${{ inputs.path }}

0 commit comments

Comments
 (0)