File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ jobs:
18
18
19
19
- name : Check if DBX is up-to-date
20
20
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
23
23
if [ $? -ne 0 ]; then
24
24
echo 'Failed to fetch latest DBX.'
25
25
exit 1
26
26
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 }')
28
28
if [ $? -ne 0 ]; then
29
29
echo 'UEFI DBX is out of date.'
30
30
exit 1
You can’t perform that action at this time.
0 commit comments