Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
needs: [build]
steps:
- name: Download build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: build
- name: Display structure of downloaded files
Expand Down Expand Up @@ -111,13 +111,13 @@ jobs:
pull-requests: write # Explicitly set permissions for creating/updating PR comments
steps:
- name: Download installer screenshot artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: installer-screenshot
# Defaults to downloading to the workspace root, e.g., installer_screenshot.png

- name: Download tray screenshot artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: tray-screenshot
# Defaults to downloading to the workspace root, e.g., tray_screenshot.png
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Download build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: build
- name: Install Incus
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
needs: [ build ]
steps:
- name: Download release
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: release
- name: Run Windows schema
Expand All @@ -35,7 +35,7 @@ jobs:
needs: [ build ]
steps:
- name: Download release
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: release
- name: Rename Windows installer (x64)
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
needs: [ build ]
steps:
- name: Download release
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: release

Expand Down