From 6e0a41195cd8a5798c56eba6b106b575c05cd437 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Thu, 1 Aug 2024 20:39:22 -0600 Subject: [PATCH] simplify git user/email per https://github.com/actions/checkout/issues/13#issuecomment-2207006934 this is fixed --- .github/workflows/node.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 098b1f8..0f52d3b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -62,10 +62,10 @@ jobs: needs: [ test ] runs-on: ubuntu-latest env: - GIT_AUTHOR_NAME: github-actions[bot] - GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com - GIT_COMMITTER_NAME: github-actions[bot] - GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com + GIT_AUTHOR_NAME: github-actions + GIT_AUTHOR_EMAIL: github-actions@github.com + GIT_COMMITTER_NAME: github-actions + GIT_COMMITTER_EMAIL: github-actions@github.com steps: - uses: actions/checkout@v4 with: