Skip to content

Commit e6e8326

Browse files
committed
.github/workflows/dbx.yml: Fix downloading DBX
Signed-off-by: Michał Żygowski <[email protected]>
1 parent 17d395d commit e6e8326

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dbx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818

1919
- name: Check if DBX is up-to-date
2020
run: |
21-
echo 'Fetching DBX from uefi.org'
22-
wget https://uefi.org/sites/default/files/resources/x64_DBXUpdate.bin -o /dev/null
21+
echo 'Fetching DBX from Microsoft Secure Boot GitHub repository'
22+
wget https://github.com/microsoft/secureboot_objects/raw/refs/heads/main/PostSignedObjects/DBX/amd64/DBXUpdate.bin -o /dev/null
2323
if [ $? -ne 0 ]; then
2424
echo 'Failed to fetch latest DBX.'
2525
exit 1
2626
fi
27-
diff <(sha256sum x64_DBXUpdate.bin | awk '{ print $1 }') <(sha256sum DasharoPayloadPkg/SecureBootDefaultKeys/DBXUpdate.bin | awk '{ print $1 }')
27+
diff <(sha256sum DBXUpdate.bin | awk '{ print $1 }') <(sha256sum DasharoPayloadPkg/SecureBootDefaultKeys/DBXUpdate.bin | awk '{ print $1 }')
2828
if [ $? -ne 0 ]; then
2929
echo 'UEFI DBX is out of date.'
3030
exit 1

0 commit comments

Comments
 (0)