Skip to content

Commit b661d9a

Browse files
authored
Merge pull request #539 from numtide/fix/update-vendor-hash-workflow
fix: update vendor hash workflow
2 parents 89d3bf5 + ed1406c commit b661d9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/update-vendor-hash.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
jobs:
88
dependabot:
99
runs-on: ubuntu-latest
10-
if: ${{ github.actor == 'dependabot[bot]' }}
10+
if: ${{ github.actor == 'renovate[bot]' }}
1111
steps:
1212
- uses: actions/checkout@v4
1313
with:
@@ -24,8 +24,8 @@ jobs:
2424
# git push if we have a diff
2525
if [[ -n $(git diff) ]]; then
2626
git add default.nix
27-
git config --global user.email "<49699333+dependabot[bot]@users.noreply.github.com>"
28-
git config --global user.name "dependabot[bot]"
27+
git config --global user.email "<29139614+renovate[bot]@users.noreply.github.com>"
28+
git config --global user.name "renovate[bot]"
2929
git commit -m "update vendorHash"
3030
git push origin HEAD:${{ github.head_ref }}
3131
fi

0 commit comments

Comments
 (0)