Skip to content

Commit 4ac7517

Browse files
Update GitHub Actions upload-artifact from v3 to v4
- Fix deprecated action version in all workflow files - Update build-installers.yml (4 instances) - Update release.yml (1 instance) - Update ci.yml (1 instance) - Resolves GitHub Actions deprecation warning
1 parent 6a116b6 commit 4ac7517

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-installers.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
light -ext WixUIExtension digstore.wixobj -o digstore-windows-x64.msi
9292
9393
- name: Upload Windows Installer
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: digstore-windows-installer
9797
path: installer/windows/digstore-windows-x64.msi
@@ -166,7 +166,7 @@ jobs:
166166
hdiutil create -volname "Digstore Min" -srcfolder "Digstore Min.app" -ov -format UDZO digstore-macos.dmg
167167
168168
- name: Upload macOS Installer
169-
uses: actions/upload-artifact@v3
169+
uses: actions/upload-artifact@v4
170170
with:
171171
name: digstore-macos-installer
172172
path: installer/macos/digstore-macos.dmg
@@ -269,7 +269,7 @@ jobs:
269269
mv Digstore*.AppImage installer/linux/digstore-linux-x86_64.AppImage
270270
271271
- name: Upload Linux Packages
272-
uses: actions/upload-artifact@v3
272+
uses: actions/upload-artifact@v4
273273
with:
274274
name: digstore-linux-installers
275275
path: |
@@ -356,7 +356,7 @@ jobs:
356356
chmod +x installer/install.sh
357357
358358
- name: Upload Install Script
359-
uses: actions/upload-artifact@v3
359+
uses: actions/upload-artifact@v4
360360
with:
361361
name: universal-install-script
362362
path: installer/install.sh

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
copy target\${{ matrix.target }}\release\digstore.exe ${{ matrix.artifact_name }}
114114
115115
- name: Upload artifacts
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
with:
118118
name: ${{ matrix.artifact_name }}
119119
path: ${{ matrix.artifact_name }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ jobs:
410410
chmod +x packaging/install/install.sh
411411
412412
- name: Upload packaging artifacts
413-
uses: actions/upload-artifact@v3
413+
uses: actions/upload-artifact@v4
414414
with:
415415
name: packaging
416416
path: packaging/

0 commit comments

Comments
 (0)