mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Bump actions/upload-artifact from 2 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
50c91eba71
commit
6d53132613
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
||||||
run: python build.py --version ${{ matrix.py_version }}
|
run: python build.py --version ${{ matrix.py_version }}
|
||||||
|
|
||||||
- name: Publish Build Artifact
|
- name: Publish Build Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
name: ${{ matrix.py_version }}-build-artifact
|
name: ${{ matrix.py_version }}-build-artifact
|
||||||
|
|
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
||||||
run: python build.py --version ${{ matrix.py_version }}
|
run: python build.py --version ${{ matrix.py_version }}
|
||||||
|
|
||||||
- name: Publish Build Artifact
|
- name: Publish Build Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
name: ${{ matrix.py_version }}-build-artifact
|
name: ${{ matrix.py_version }}-build-artifact
|
||||||
|
|
2
.github/workflows/test.yaml
vendored
2
.github/workflows/test.yaml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
||||||
if: ${{ matrix.py_version == '3.9' }}
|
if: ${{ matrix.py_version == '3.9' }}
|
||||||
|
|
||||||
- name: Publish Test Atrifact
|
- name: Publish Test Atrifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
name: ${{ matrix.py_version }}-test-results
|
name: ${{ matrix.py_version }}-test-results
|
||||||
|
|
Loading…
Reference in a new issue