Skip to content

Commit 333c607

Browse files
committed
Bump GitHub Actions to latest versions
- actions/cache v4 -> v6 - actions/checkout v4 -> v7 - aglipanci/laravel-pint-action -> 2.6 - ramsey/composer-install v3 -> v4 - softprops/action-gh-release v2 -> v3 - stefanzweifel/git-auto-commit-action v5 -> v7
1 parent 8a10e50 commit 333c607

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/auto-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v7
1818

1919
- name: Create GitHub Release
20-
uses: softprops/action-gh-release@v2
20+
uses: softprops/action-gh-release@v3
2121
with:
2222
tag_name: ${{ github.ref_name }}
2323
name: Release ${{ github.ref_name }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v7
1919
with:
2020
ref: ${{ github.head_ref }}
2121

2222
- name: Fix PHP code style issues
23-
uses: aglipanci/laravel-pint-action@2.4
23+
uses: aglipanci/laravel-pint-action@2.6
2424

2525
- name: Commit changes
26-
uses: stefanzweifel/git-auto-commit-action@v5
26+
uses: stefanzweifel/git-auto-commit-action@v7
2727
with:
2828
commit_message: Fix styling

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 5
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v7
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -22,7 +22,7 @@ jobs:
2222
coverage: none
2323

2424
- name: Install composer dependencies
25-
uses: ramsey/composer-install@v3
25+
uses: ramsey/composer-install@v4
2626

2727
- name: Run PHPStan
2828
run: ./vendor/bin/phpstan --error-format=github

.github/workflows/run-tests.yml

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

3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v7
3636

3737
- name: Setup PHP
3838
uses: shivammathur/setup-php@v2
@@ -46,7 +46,7 @@ jobs:
4646
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4747

4848
- name: Cache Composer dependencies
49-
uses: actions/cache@v4
49+
uses: actions/cache@v6
5050
with:
5151
path: ${{ steps.composer-cache.outputs.dir }}
5252
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/update-changelog.yml

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

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v7
1818
with:
1919
ref: main
2020

@@ -25,7 +25,7 @@ jobs:
2525
release-notes: ${{ github.event.release.body }}
2626

2727
- name: Commit updated CHANGELOG
28-
uses: stefanzweifel/git-auto-commit-action@v5
28+
uses: stefanzweifel/git-auto-commit-action@v7
2929
with:
3030
branch: main
3131
commit_message: Update CHANGELOG

0 commit comments

Comments
 (0)