build(deps): bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Feanil Patel
parent
7866c68dbf
commit
90eae7d14e
2
.github/workflows/js-tests.yml
vendored
2
.github/workflows/js-tests.yml
vendored
@@ -73,7 +73,7 @@ jobs:
|
|||||||
npm run test
|
npm run test
|
||||||
|
|
||||||
- name: Save Job Artifacts
|
- name: Save Job Artifacts
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: Build-Artifacts
|
name: Build-Artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
2
.github/workflows/quality-checks.yml
vendored
2
.github/workflows/quality-checks.yml
vendored
@@ -85,7 +85,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Save Job Artifacts
|
- name: Save Job Artifacts
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: Build-Artifacts
|
name: Build-Artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
10
.github/workflows/unit-tests.yml
vendored
10
.github/workflows/unit-tests.yml
vendored
@@ -131,7 +131,7 @@ jobs:
|
|||||||
|
|
||||||
- name: save pytest warnings json file
|
- name: save pytest warnings json file
|
||||||
if: success()
|
if: success()
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: pytest-warnings-json-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
|
name: pytest-warnings-json-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
|
||||||
path: |
|
path: |
|
||||||
@@ -143,7 +143,7 @@ jobs:
|
|||||||
mv reports/.coverage reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
|
mv reports/.coverage reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
|
||||||
|
|
||||||
- name: Upload coverage
|
- name: Upload coverage
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: coverage-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
|
name: coverage-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
|
||||||
path: reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
|
path: reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
|
||||||
@@ -245,7 +245,7 @@ jobs:
|
|||||||
|
|
||||||
- name: save warning report
|
- name: save warning report
|
||||||
if: success()
|
if: success()
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: pytest-warning-report-html
|
name: pytest-warning-report-html
|
||||||
path: |
|
path: |
|
||||||
@@ -257,14 +257,14 @@ jobs:
|
|||||||
needs: [compile-warnings-report]
|
needs: [compile-warnings-report]
|
||||||
steps:
|
steps:
|
||||||
- name: Merge Pytest Warnings JSON Artifacts
|
- name: Merge Pytest Warnings JSON Artifacts
|
||||||
uses: actions/upload-artifact/merge@v6
|
uses: actions/upload-artifact/merge@v7
|
||||||
with:
|
with:
|
||||||
name: pytest-warnings-json
|
name: pytest-warnings-json
|
||||||
pattern: pytest-warnings-json-*
|
pattern: pytest-warnings-json-*
|
||||||
delete-merged: true
|
delete-merged: true
|
||||||
|
|
||||||
- name: Merge Coverage Artifacts
|
- name: Merge Coverage Artifacts
|
||||||
uses: actions/upload-artifact/merge@v6
|
uses: actions/upload-artifact/merge@v7
|
||||||
with:
|
with:
|
||||||
name: coverage
|
name: coverage
|
||||||
pattern: coverage-*
|
pattern: coverage-*
|
||||||
|
|||||||
Reference in New Issue
Block a user