Skip to content

Commit

Permalink
Change the hashing algorithm to sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
Masgalor committed Aug 22, 2024
1 parent 4f3da20 commit 1a2659f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
type: string
outputs:
checksum:
description: "md5 sums of the generated output files"
description: "sha256 sums of the generated output files"
value: ${{ jobs.build.outputs.checksum }}

jobs:
Expand Down Expand Up @@ -93,11 +93,11 @@ jobs:
overwrite: true
- name: Strip the burrito_link binaries for reproducibility
run: strip output/burrito_link/*
- name: Get the md5 sums for the produced output files
- name: Get the sha256 sums for the produced output files
id: final
run: |
mv output/burrito_link/* output/
rm -rf output/burrito_link
echo 'checksum<<EOF' >> $GITHUB_OUTPUT
md5sum output/* >> $GITHUB_OUTPUT
sha256sum output/* >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT

0 comments on commit 1a2659f

Please sign in to comment.