Skip to content

Commit ac8244e

Browse files
committed
Update GitHub Actions config
1 parent a9f0833 commit ac8244e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/coding_standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v6
1818
with:
1919
repository: netgen-layouts/layouts-coding-standard
2020
path: vendor/netgen/layouts-coding-standard

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
script: ['phpstan']
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v6
2222
- uses: shivammathur/setup-php@v2
2323
with:
2424
php-version: '8.4'

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,18 @@ This is e.g. useful if you wish to run PHP CS Fixer via GitHub action, which
6161
does not need running `composer install`:
6262

6363
```yaml
64-
# .github/workflows/ci.yml
65-
name: PHP CS Fixer
64+
# .github/workflows/coding_standards.yml
65+
name: Coding standards
6666
on: [push, pull_request]
6767

6868
jobs:
6969
php-cs-fixer:
7070
name: PHP CS Fixer
7171
runs-on: ubuntu-latest
72+
7273
steps:
73-
- uses: actions/checkout@v3
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v6
75+
- uses: actions/checkout@v6
7576
with:
7677
repository: netgen-layouts/layouts-coding-standard
7778
path: vendor/netgen/layouts-coding-standard

0 commit comments

Comments
 (0)