Skip to content

Commit 27cb666

Browse files
Bump the deps group across 1 directory with 2 updates
Bumps the deps group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `stefanzweifel/git-auto-commit-action` from 6 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](stefanzweifel/git-auto-commit-action@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9ef25f6 commit 27cb666

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/composer-normalize.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Git checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Validate Composer configuration
1818
run: composer validate --strict
@@ -23,6 +23,6 @@ jobs:
2323
composer global require ergebnis/composer-normalize
2424
composer normalize
2525
26-
- uses: stefanzweifel/git-auto-commit-action@v6
26+
- uses: stefanzweifel/git-auto-commit-action@v7
2727
with:
2828
commit_message: normalize composer.json

.github/workflows/fix-code-style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -27,7 +27,7 @@ jobs:
2727
- run: composer fix-style
2828
continue-on-error: true
2929

30-
- uses: stefanzweifel/git-auto-commit-action@v6
30+
- uses: stefanzweifel/git-auto-commit-action@v7
3131
with:
3232
commit_message: composer fix-style
3333
commit_author: laravel-ide-helper <[email protected]>

.github/workflows/run-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
path: src
3131

.github/workflows/run-static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
git config --global core.eol lf
3838
3939
- name: Checkout code
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141

4242
- name: Setup PHP
4343
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
ref: ${{ github.event.release.target_commitish }}
2222

@@ -27,7 +27,7 @@ jobs:
2727
release-notes: ${{ github.event.release.body }}
2828

2929
- name: Commit updated CHANGELOG
30-
uses: stefanzweifel/git-auto-commit-action@v6
30+
uses: stefanzweifel/git-auto-commit-action@v7
3131
with:
3232
branch: ${{ github.event.release.target_commitish }}
3333
commit_message: Update CHANGELOG

0 commit comments

Comments
 (0)