mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-04-06 06:01:27 +00:00
chore(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:
2
.github/workflows/build_appimage.yml
vendored
2
.github/workflows/build_appimage.yml
vendored
@@ -143,7 +143,7 @@ jobs:
|
||||
|
||||
- name: Upload AppImage artifact
|
||||
if: steps.should_build.outputs.should_build == 'true'
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ steps.appimage_name.outputs.name }}
|
||||
path: linux/${{ steps.appimage_name.outputs.name }}
|
||||
|
||||
2
.github/workflows/build_deb.yml
vendored
2
.github/workflows/build_deb.yml
vendored
@@ -269,7 +269,7 @@ jobs:
|
||||
|
||||
- name: Upload .deb artifact
|
||||
if: steps.should_build.outputs.should_build == 'true'
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ steps.deb_name.outputs.name }}
|
||||
path: ${{ steps.deb_name.outputs.name }}
|
||||
|
||||
2
.github/workflows/build_deb_debian13.yml
vendored
2
.github/workflows/build_deb_debian13.yml
vendored
@@ -261,7 +261,7 @@ jobs:
|
||||
|
||||
- name: Upload .deb artifact
|
||||
if: steps.should_build.outputs.should_build == 'true'
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ steps.deb_name.outputs.name }}
|
||||
path: ${{ steps.deb_name.outputs.name }}
|
||||
|
||||
2
.github/workflows/build_linux.yml
vendored
2
.github/workflows/build_linux.yml
vendored
@@ -45,7 +45,7 @@ jobs:
|
||||
# NOTE: The sample-platform test runner (CCExtractor/sample-platform)
|
||||
# matches artifact names exactly. Update Artifact_names in
|
||||
# mod_ci/controllers.py there if you rename this artifact.
|
||||
- uses: actions/upload-artifact@v6
|
||||
- uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: CCExtractor Linux build
|
||||
path: ./linux/artifacts
|
||||
|
||||
2
.github/workflows/build_linux_systemlibs.yml
vendored
2
.github/workflows/build_linux_systemlibs.yml
vendored
@@ -140,7 +140,7 @@ jobs:
|
||||
|
||||
- name: Upload artifact
|
||||
if: steps.should_build.outputs.should_build == 'true'
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ steps.output_name.outputs.name }}
|
||||
path: ${{ steps.output_name.outputs.name }}.tar.gz
|
||||
|
||||
2
.github/workflows/build_mac.yml
vendored
2
.github/workflows/build_mac.yml
vendored
@@ -42,7 +42,7 @@ jobs:
|
||||
run: mkdir ./mac/artifacts
|
||||
- name: Copy release artifact
|
||||
run: cp ./mac/ccextractor ./mac/artifacts/
|
||||
- uses: actions/upload-artifact@v6
|
||||
- uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: CCExtractor mac build
|
||||
path: ./mac/artifacts
|
||||
|
||||
2
.github/workflows/build_snap.yml
vendored
2
.github/workflows/build_snap.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
||||
run: ls -lh *.snap
|
||||
|
||||
- name: Upload snap as workflow artifact
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: CCExtractor Snap
|
||||
path: "*.snap"
|
||||
|
||||
4
.github/workflows/build_windows.yml
vendored
4
.github/workflows/build_windows.yml
vendored
@@ -133,7 +133,7 @@ jobs:
|
||||
# matches artifact names exactly. Update Artifact_names in
|
||||
# mod_ci/controllers.py there if you rename these artifacts.
|
||||
- name: Upload Release artifact
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: CCExtractor Windows ${{ matrix.arch }} Release build
|
||||
path: |
|
||||
@@ -158,7 +158,7 @@ jobs:
|
||||
working-directory: ./windows/${{ matrix.outdir }}Debug-Full
|
||||
|
||||
- name: Upload Debug artifact
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: CCExtractor Windows ${{ matrix.arch }} Debug build
|
||||
path: |
|
||||
|
||||
2
.github/workflows/publish_chocolatey.yml
vendored
2
.github/workflows/publish_chocolatey.yml
vendored
@@ -134,7 +134,7 @@ jobs:
|
||||
Write-Host "Package submitted to Chocolatey! It may take some time to be moderated and published."
|
||||
|
||||
- name: Upload package artifact
|
||||
uses: actions/upload-artifact@v6
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: chocolatey-package
|
||||
path: packaging/chocolatey/*.nupkg
|
||||
|
||||
Reference in New Issue
Block a user