From 5e9d328a50ea07cfbd55b74f91bacc96ebf9f32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 15 Sep 2025 09:31:38 +0200 Subject: [PATCH] Change hash algorithm from SHA1 to SHA256 --- package.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.ps1 b/package.ps1 index 99d95f7..a3f1cfe 100644 --- a/package.ps1 +++ b/package.ps1 @@ -35,5 +35,5 @@ else Compress-Archive -Force "artifacts/replays/*" -DestinationPath "artifacts/replays.zip" -CompressionLevel Optimal } Remove-Item -Force -Recurse artifacts/replays -$fileHash = Get-FileHash "artifacts/replays.zip" -Algorithm SHA1 | Select-Object Hash -Write-Host -ForegroundColor Cyan "::set-output name=SHA1::" $fileHash.Hash +$fileHash = Get-FileHash "artifacts/replays.zip" -Algorithm SHA256 | Select-Object Hash +Write-Host -ForegroundColor Cyan "::set-output name=SHA256::" $fileHash.Hash