From 42229f6a7e798e92c2f79084620748e63f25cb96 Mon Sep 17 00:00:00 2001 From: "andrii.k" Date: Tue, 26 Nov 2024 03:13:57 +0200 Subject: [PATCH] update actions --- .github/workflows/update-chart-version.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-chart-version.yml b/.github/workflows/update-chart-version.yml index 6952351..597427a 100644 --- a/.github/workflows/update-chart-version.yml +++ b/.github/workflows/update-chart-version.yml @@ -16,6 +16,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + with: + persist-credentials: false - name: Check Tag id: check-tag @@ -36,8 +38,8 @@ jobs: - name: Commit and push changes if: env.match == 'true' run: | - git config user.name "GitHub Actions" - git config user.email "actions@github.com" + git config user.name "release" + git config user.email "release@release.com" git add "${CHART_FILE}" git commit -m "Update version to ${RELEASE_TAG}"