Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_deb_debian13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux_systemlibs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_chocolatey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading