Skip to content

Commit c5cad2e

Browse files
authored
Fix: Deprecated artifacts follow up (#327)
*Issue #, if available:* The previous fix did not work because `download-artifacts@v3` is also deprecated and must be updated. ``` Error: This request has been automatically failed because it uses a deprecated version of `actions/download-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ ``` Previous fix: #326 *Description of changes:* - Updating `download-artifacts@v3` to `v4`. - Also fixing syntax error for name pattern. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent 865f930 commit c5cad2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/application-signals-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
role-to-assume: arn:aws:iam::${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ACCOUNT_ID }}:role/${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ROLE_NAME }}
3535
aws-region: us-east-1
3636

37-
- uses: actions/download-artifact@v3
37+
- uses: actions/download-artifact@v4
3838
with:
3939
name: ${{ inputs.staging-wheel-name }}
4040

.github/workflows/release-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
- name: download layerARNs
147147
uses: actions/download-artifact@v4
148148
with:
149-
name: ${{ env.LAYER_NAME }}-*
149+
pattern: ${{ env.LAYER_NAME }}-*
150150
path: ${{ env.LAYER_NAME }}
151151
merge-multiple: true
152152
- name: show layerARNs

0 commit comments

Comments
 (0)