From a361c17f0414e10b73cc58f6e0bed7e2b65f2fa9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 21:22:49 +0000 Subject: [PATCH] chore(deps)(deps): bump stefanzweifel/git-auto-commit-action from 5 to 7 Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 5 to 7. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v5...v7) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/backend-api.yml | 2 +- .github/workflows/backend-data.yml | 2 +- .github/workflows/backend-library.yml | 2 +- .github/workflows/frontend.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backend-api.yml b/.github/workflows/backend-api.yml index a1f62af..f297320 100644 --- a/.github/workflows/backend-api.yml +++ b/.github/workflows/backend-api.yml @@ -41,7 +41,7 @@ jobs: run: dotnet format PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj --verbosity diagnostic - name: Commit formatted code - uses: stefanzweifel/git-auto-commit-action@v5 + uses: stefanzweifel/git-auto-commit-action@v7 if: github.event_name == 'push' with: commit_message: 'chore: auto-format Backend API code' diff --git a/.github/workflows/backend-data.yml b/.github/workflows/backend-data.yml index c6eb12c..3c6b173 100644 --- a/.github/workflows/backend-data.yml +++ b/.github/workflows/backend-data.yml @@ -41,7 +41,7 @@ jobs: run: dotnet format PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj --verbosity diagnostic - name: Commit formatted code - uses: stefanzweifel/git-auto-commit-action@v5 + uses: stefanzweifel/git-auto-commit-action@v7 if: github.event_name == 'push' with: commit_message: 'chore: auto-format Backend Data code' diff --git a/.github/workflows/backend-library.yml b/.github/workflows/backend-library.yml index 20a0fca..de1c9fe 100644 --- a/.github/workflows/backend-library.yml +++ b/.github/workflows/backend-library.yml @@ -39,7 +39,7 @@ jobs: run: dotnet format PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj --verbosity diagnostic - name: Commit formatted code - uses: stefanzweifel/git-auto-commit-action@v5 + uses: stefanzweifel/git-auto-commit-action@v7 if: github.event_name == 'push' with: commit_message: 'chore: auto-format Backend Library code' diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 1dc7c6b..2fc7054 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -78,7 +78,7 @@ jobs: run: npx prettier --write "src/**/*.{ts,html,css,scss}" - name: Commit formatted code - uses: stefanzweifel/git-auto-commit-action@v5 + uses: stefanzweifel/git-auto-commit-action@v7 if: github.event_name == 'push' with: commit_message: 'chore: auto-format Frontend code'