Skip to content

Commit

Permalink
Bump Deprecated Workflow Functions (#266)
Browse files Browse the repository at this point in the history
### Summary

Bumped `actions/upload-artifact` and `actions/download-artifact`
versions from 3 to 4

### Description

The v3 for both of these actions has been deprecated, bumped them to v4

### Test Results

n/a

### Changelog

n/a

### Related Issue

n/a
  • Loading branch information
bcmeireles authored Jan 17, 2025
1 parent 990e846 commit a81c216
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: bash .github/scripts/run_tests.sh

- name: Upload tests report as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: all-tests-reports
path: reports/
Expand All @@ -91,13 +91,13 @@ jobs:

steps:
- name: Download test reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: all-tests-reports
path: reports/

- name: Upload individual test reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: individual-test-reports
path: reports/*.txt
Expand All @@ -112,7 +112,7 @@ jobs:
uses: actions/checkout@v3.5.2

- name: Download All Test Reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: all-tests-reports
path: reports/
Expand Down

0 comments on commit a81c216

Please sign in to comment.