From 55b88b4893463569102598c9916cd8ad6074b600 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 28 Mar 2022 09:03:46 +0200 Subject: [PATCH] Update CI builds to zlib 1.2.12 "Due to the bug fixes, any installations of 1.2.11 should be replaced with 1.2.12." --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f671039b70..f0d864a0c7 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -73,9 +73,9 @@ jobs: - name: Get zlib, libpng and bison run: | # TODO: use an array $wc = New-Object System.Net.WebClient - $wc.DownloadFile('https://www.zlib.net/zlib1211.zip', 'zlib.zip') + $wc.DownloadFile('https://www.zlib.net/zlib1212.zip', 'zlib.zip') $hash = (Get-FileHash "zlib.zip" -Algorithm SHA256).Hash - if ($hash -ne 'd7510a8ee1918b7d0cad197a089c0a2cd4d6df05fee22389f67f115e738b178d') { + if ($hash -ne '173e89893dcb8b4a150d7731cd72f0602f1d6b45e60e2a54efdf7f3fc3325fd7') { Write-Host "zlib SHA256 mismatch! ($hash)" exit 1 }