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'