From 7a003ae6df7403a7984d7569cd29f1ecc0f07d58 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Sun, 11 Feb 2024 18:48:44 +0100 Subject: [PATCH] ci: fix version update again --- .github/workflows/version_in_code.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/version_in_code.yml b/.github/workflows/version_in_code.yml index e8e93d3e..85e6ec55 100644 --- a/.github/workflows/version_in_code.yml +++ b/.github/workflows/version_in_code.yml @@ -13,8 +13,9 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: + token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} fetch-depth: 0 - name: Update Version String @@ -26,8 +27,8 @@ jobs: - name: Commit Changes run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" + git config --local user.email "marc@jakobi.dev" + git config --local user.name "Marc Jakobi" if [[ ! -z $(git status -s) ]]; then git add . git commit -m "chore(constants.lua): update version variable"