For debugging cache integrity, code was added to calculate the checksum of the cache during restore and save (see https://github.com/actions/cache/blob/master/src/restore.ts#L100)
Since we can't conditionally run this in debug mode only, it's run on every use of the action and is a waste of time. We should remove that block of code.
For debugging cache integrity, code was added to calculate the checksum of the cache during restore and save (see https://github.com/actions/cache/blob/master/src/restore.ts#L100)
Since we can't conditionally run this in debug mode only, it's run on every use of the action and is a waste of time. We should remove that block of code.