Skip to content

Commit

Permalink
fix: update actions/upload-artifact (#14072)
Browse files Browse the repository at this point in the history
* fix: update actions/upload-artifact

* fix: make artifact names unique
  • Loading branch information
rtpascual authored Jan 16, 2025
1 parent c3a35db commit 06e483a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/run-smoke-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ inputs:
role-to-assume:
description: an IAM role to use in tests
required: true
cli-version:
description: version of Amplify CLI
required: true
region:
description: an AWS region to run in
required: false
Expand Down Expand Up @@ -66,8 +69,8 @@ runs:
CIRCLECI: true

- name: Upload Report
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce #v3.1.2
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
if: always()
with:
name: test report ${{ runner.os }}
name: test report ${{ runner.os }} ${{ inputs.cli-version }}
path: packages/amplify-e2e-tests/amplify-e2e-reports
1 change: 1 addition & 0 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ jobs:
uses: ./.github/actions/run-smoke-tests
with:
role-to-assume: ${{ secrets.SMOKE_TESTS_ROLE_ARN }}
cli-version: ${{ matrix.cli-version }}

0 comments on commit 06e483a

Please sign in to comment.