Skip to content

Commit

Permalink
Bump the github-actions group with 2 updates (#5850)
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 2 updates:
[stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action)
and [actions/setup-node](https://github.com/actions/setup-node).
  • Loading branch information
dependabot[bot] committed Nov 1, 2023
1 parent f31d573 commit 76201b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yml
Expand Up @@ -48,7 +48,7 @@ jobs:
run: vendor/bin/php-cs-fixer list-files --config=.php-cs-fixer.dist.php | xargs -n 250 -P 3 vendor/bin/php-cs-fixer fix --diff --config=.php-cs-fixer.dist.php

- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: env.writable == 1
with:
commit_message: Apply php-cs-fixer changes
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
run: vendor/bin/rector process --no-progress-bar

- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: env.writable == 1
with:
commit_message: Apply rector changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Expand Up @@ -53,7 +53,7 @@ jobs:
git diff --exit-code .tools/psalm/baseline.xml || (echo "::error file=.tools/psalm/baseline.xml,line=1,col=1::Psalm baseline file is outdated and must be regenerated via \`composer psalm-baseline\`." && exit 1)
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: failure() && steps.baseline.conclusion != 'skipped' && env.writable == 1
with:
commit_message: Update psalm baseline
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
git diff --exit-code .tools/psalm/baseline-taint.xml || (echo "::error file=.tools/psalm/baseline-taint.xml,line=1,col=1::Psalm taint baseline file is outdated and must be regenerated via \`composer taint-baseline\`." && exit 1)
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: failure() && steps.baseline.conclusion != 'skipped' && env.writable == 1
with:
commit_message: Update psalm taint baseline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/styles-compile.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
run: php redaxo/bin/console be_style:compile --ansi

- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: env.writable == 1
with:
commit_message: Apply be_style:compile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/visual-tests.yml
Expand Up @@ -117,7 +117,7 @@ jobs:
php redaxo/bin/console package:install structure/version --ansi
- name: Setup nodejs
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup Webserver
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
git diff --exit-code --name-only .github/tests-visual/
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: failure() && env.writable == 1
with:
commit_message: Update screenshots
Expand Down

0 comments on commit 76201b7

Please sign in to comment.