security(cicd): Pinned dependency versions and extract 2 unsafe expressions to env vars (PR #1297)

This commit is contained in:
dagecko
2026-04-02 18:06:23 -04:00
committed by GitHub
parent fc95bad011
commit 3ec27ada8a
8 changed files with 13 additions and 8 deletions
+3 -1
View File
@@ -29,10 +29,12 @@ jobs:
else
echo "[+] Files were changed! Pushing changed..."
git add -A
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "[Github Action] Automated readme update."
git push
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}