Skip to content

Commit 4554337

Browse files
committed
update github actions
1 parent f6ddf5a commit 4554337

5 files changed

Lines changed: 24 additions & 9 deletions

File tree

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: 'composer'
5+
directory: '/'
6+
schedule:
7+
interval: 'daily'
8+
open-pull-requests-limit: 10
9+
10+
- package-ecosystem: 'github-actions'
11+
directory: '/'
12+
schedule:
13+
interval: 'daily'
14+
ignore:
15+
- dependency-name: '*'
16+
update-types:
17+
- 'version-update:semver-minor'
18+
- 'version-update:semver-patch'

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,13 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Create release
17-
uses: actions/create-release@latest
17+
uses: crazy-max/ghaction-github-release@v2
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
2020
with:
21-
tag_name: ${{ github.ref }}
22-
release_name: ${{ github.ref }} Coding Standard
21+
name: ${{ github.ref_name }} Coding Standard
2322
draft: true
2423
prerelease: false
25-
body: |
26-
Please refer to the [CHANGELOG](CHANGELOG.md) for the detailed list of changes.

.github/workflows/test-coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Setup PHP
3939
uses: shivammathur/setup-php@v2

.github/workflows/test-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Setup PHP
3939
uses: shivammathur/setup-php@v2

.github/workflows/test-phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v4
3737

3838
- name: Setup PHP
3939
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)