Skip to content

Commit 738d4e3

Browse files
committed
Upgrade actions/download-artifact from v7 to v8 in Bicep deployment and validation workflows
1 parent d9a940a commit 738d4e3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/templates/bicep-deployments/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,22 +119,22 @@ runs:
119119
# Download template file artifact if artifact name provided
120120
- name: Download Template File Artifact
121121
if: inputs.template-file-artifact-name != ''
122-
uses: actions/download-artifact@v7
122+
uses: actions/download-artifact@v8
123123
with:
124124
name: ${{ inputs.template-file-artifact-name }}
125125
path: ${{ inputs.template-file-directory }}
126126

127127
- name: Download Additional Resource Artifact
128128
if: inputs.additional-resource-artifact-name != ''
129-
uses: actions/download-artifact@v7
129+
uses: actions/download-artifact@v8
130130
with:
131131
name: ${{ inputs.additional-resource-artifact-name }}
132132
path: "${{ inputs.additional-resource-directory }}"
133133

134134
# Download Parameter file artifact if artifact name provided
135135
- name: Download Parameter File Artifact
136136
if: inputs.parameter-file-artifact-name != ''
137-
uses: actions/download-artifact@v7
137+
uses: actions/download-artifact@v8
138138
with:
139139
name: ${{ inputs.parameter-file-artifact-name }}
140140
path: "${{ inputs.parameter-file-directory }}"

.github/actions/templates/test-validate/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ runs:
133133
# Download Parameter file artifact if artifact name provided
134134
- name: Download Parameter File Artifact
135135
if: inputs.parameter-file-artifact-name != ''
136-
uses: actions/download-artifact@v7
136+
uses: actions/download-artifact@v8
137137
with:
138138
name: ${{ inputs.parameter-file-artifact-name }}
139139
path: "${{ inputs.template-file-directory }}/psrule-test/"
@@ -162,14 +162,14 @@ runs:
162162
# Download template file artifact if artifact name provided
163163
- name: Download Template File Artifact
164164
if: inputs.template-file-artifact-name != ''
165-
uses: actions/download-artifact@v7
165+
uses: actions/download-artifact@v8
166166
with:
167167
name: ${{ inputs.template-file-artifact-name }}
168168
path: ${{ inputs.template-file-directory }}
169169

170170
- name: Download Additional Resource Artifact
171171
if: inputs.additional-resource-artifact-name != ''
172-
uses: actions/download-artifact@v7
172+
uses: actions/download-artifact@v8
173173
with:
174174
name: ${{ inputs.additional-resource-artifact-name }}
175175
path: "${{ inputs.additional-resource-directory }}"

0 commit comments

Comments
 (0)