Skip to content

Commit

Permalink
feat(config): Github actions artifact v4 upgrade.
Browse files Browse the repository at this point in the history
V1 and V2 of Github artifact actions was deprecated. Upgraded to V4 latest version.

https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
  • Loading branch information
ztraboo committed Sep 10, 2024
1 parent cd1b294 commit c465acb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: save pytest warnings json file
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pytest-warnings-json
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
xvfb-run --auto-servernum ./scripts/all-tests.sh
- name: Save Job Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Build-Artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
./scripts/all-tests.sh
- name: Save Job Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Build-Artifacts
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: sudo chown runner:runner -R .*
- uses: actions/checkout@v2
- name: collect pytest warnings files
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: pytest-warnings-json
path: test_root/log
Expand All @@ -91,7 +91,7 @@ jobs:
- name: save warning report
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pytest-warning-report-html
path: |
Expand Down

0 comments on commit c465acb

Please sign in to comment.