Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Commit d7b5fd9

Browse files
Bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...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>
1 parent ec351ba commit d7b5fd9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build-appimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
-v "${WORKSPACE}/output:/host-output" \
2626
jellyfin-desktop-appimage
2727
- name: Archive production artifacts
28-
uses: actions/upload-artifact@v6
28+
uses: actions/upload-artifact@v7
2929
with:
3030
name: linux-appimage-x86_64
3131
path: ${{ github.workspace }}/output/JellyfinDesktop-*.AppImage

.github/workflows/build-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
docker run -v $(pwd)/deployment/dist:/dist -v $(pwd):/jellyfin -e TAG=${{ matrix.tag }} -e IMG=ubuntu builddeb
2525
sudo chown --recursive $USER $(pwd)/deployment/dist
2626
- name: Archive production artifacts
27-
uses: actions/upload-artifact@v6
27+
uses: actions/upload-artifact@v7
2828
with:
2929
name: ubuntu-${{ matrix.tag }}
3030
path: ${{ github.workspace }}/deployment/dist/*
@@ -97,7 +97,7 @@ jobs:
9797
docker run -v $(pwd)/deployment/dist:/dist -v $(pwd):/jellyfin -e TAG=${{ matrix.tag }} -e IMG=debian builddeb
9898
sudo chown --recursive $USER $(pwd)/deployment/dist
9999
- name: Archive production artifacts
100-
uses: actions/upload-artifact@v6
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: debian-${{ matrix.tag }}
103103
path: ${{ github.workspace }}/deployment/dist/*

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
--app-drop-link 375 150 \
6262
"${DMG_NAME}" "./build/output/Jellyfin Desktop.app"
6363
- name: Archive production artifacts
64-
uses: actions/upload-artifact@v6
64+
uses: actions/upload-artifact@v7
6565
with:
6666
name: ${{ matrix.artifact }}
6767
path: ${{ github.workspace }}/JellyfinDesktop-*.dmg

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ jobs:
8989
ninja windows_all
9090
shell: cmd
9191
- name: Archive installer
92-
uses: actions/upload-artifact@v6
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: ${{ matrix.artifact }}-installer
9595
path: ${{ github.workspace }}/build/JellyfinDesktop-*.exe
9696
- name: Archive portable ZIP
97-
uses: actions/upload-artifact@v6
97+
uses: actions/upload-artifact@v7
9898
with:
9999
name: ${{ matrix.artifact }}-portable
100100
path: ${{ github.workspace }}/build/JellyfinDesktop-*.zip

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Upload coverage artifact
4949
if: github.event_name == 'pull_request'
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v7
5151
with:
5252
name: coverage
5353
path: |

0 commit comments

Comments
 (0)