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

Commit 146c065

Browse files
authored
Merge pull request #1105 from jellyfin/dependabot/github_actions/master/actions/upload-artifact-6
Bump actions/upload-artifact from 4 to 6
2 parents 2fc2881 + c4ba7e3 commit 146c065

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.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@v4
27+
uses: actions/upload-artifact@v6
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@v4
100+
uses: actions/upload-artifact@v6
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
@@ -58,7 +58,7 @@ jobs:
5858
--app-drop-link 375 150 \
5959
"${DMG_NAME}" "./build/output/Jellyfin Desktop.app"
6060
- name: Archive production artifacts
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: ${{ matrix.artifact }}
6464
path: ${{ github.workspace }}/JellyfinDesktop-*.dmg

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ jobs:
8686
ninja windows_all
8787
shell: cmd
8888
- name: Archive installer
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v6
9090
with:
9191
name: ${{ matrix.artifact }}-installer
9292
path: ${{ github.workspace }}/build/JellyfinDesktop-*.exe
9393
- name: Archive portable ZIP
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v6
9595
with:
9696
name: ${{ matrix.artifact }}-portable
9797
path: ${{ github.workspace }}/build/JellyfinDesktop-*.zip

0 commit comments

Comments
 (0)