Skip to content

Commit

Permalink
Merge dependabot/github_actions/actions/upload-artifact-4 into depend…
Browse files Browse the repository at this point in the history
…abot-combined-prs-1717405387957
  • Loading branch information
github-actions[bot] authored Jun 3, 2024
2 parents ac188bc + a1dad52 commit 8018e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation-trigger-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
run: cat ${{ github.workspace }}/output.txt
- name: Publishing test report
if: always() # run this step even if previous step failed
uses: actions/upload-artifact@v3 # upload test results
uses: actions/upload-artifact@v4 # upload test results
with:
name: test-results
path: ${{ github.workspace }}/output.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Run integration tests
run: bundle exec fastlane integration_tests
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always() # even if tests fail
with:
name: test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Run unit tests
run: bundle exec fastlane unit_tests
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always() # even if tests fail
with:
name: test-results
Expand Down

0 comments on commit 8018e8e

Please sign in to comment.