ci(forgejo): install Node.js before actions/checkout@v4 (#2)
This commit is contained in:
parent
98eebe62bf
commit
7baa48ec4d
27 changed files with 102 additions and 44 deletions
|
|
@ -56,7 +56,7 @@ class PryAdvanced:
|
|||
async def track_diff(self, url: str, new_content: str) -> dict:
|
||||
"""Compare current content against previous scrape. Returns unified diff.
|
||||
First scrape returns 'initial', subsequent returns changes."""
|
||||
content_hash = hashlib.md5(new_content.encode()).hexdigest()
|
||||
content_hash = hashlib.md5(new_content.encode(), usedforsecurity=False).hexdigest()
|
||||
|
||||
if url not in self._diffs:
|
||||
self._diffs[url] = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue