Skip to content

Commit eda3efd

Browse files
committed
fix: Update workflow actions to use version v1 stable instead of main, update LICENSE.md.
1 parent ac534c1 commit eda3efd

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.gitattributes

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@
3535
/composer-require-checker.json export-ignore
3636
/docs export-ignore
3737
/ecs.php export-ignore
38-
/infection.json5 export-ignore
39-
/phpstan-console.neon export-ignore
40-
/phpstan.neon export-ignore
38+
/infection.json* export-ignore
39+
/phpstan*.neon* export-ignore
4140
/phpunit.xml.dist export-ignore
4241
/psalm.xml export-ignore
4342
/rector.php export-ignore

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ name: build
1919

2020
jobs:
2121
phpunit:
22-
uses: php-forge/actions/.github/workflows/phpunit.yml@main
22+
uses: php-forge/actions/.github/workflows/phpunit.yml@v1
2323
secrets:
2424
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2525
with:
2626
composer-command: |
2727
composer require yiisoft/yii2:22.0.x-dev --prefer-dist --no-progress --no-interaction --no-scripts --ansi
2828
concurrency-group: phpunit-${{ github.workflow }}-${{ github.ref }}
2929
phpunit-compatibility:
30-
uses: php-forge/actions/.github/workflows/phpunit.yml@main
30+
uses: php-forge/actions/.github/workflows/phpunit.yml@v1
3131
secrets:
3232
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3333
with:

.github/workflows/dependency-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ name: Composer require checker
1919

2020
jobs:
2121
composer-require-checker:
22-
uses: php-forge/actions/.github/workflows/composer-require-checker.yml@main
22+
uses: php-forge/actions/.github/workflows/composer-require-checker.yml@v1

.github/workflows/ecs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ name: ecs
1919

2020
jobs:
2121
easy-coding-standard:
22-
uses: php-forge/actions/.github/workflows/ecs.yml@main
22+
uses: php-forge/actions/.github/workflows/ecs.yml@v1

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ name: static analysis
2323

2424
jobs:
2525
phpstan:
26-
uses: php-forge/actions/.github/workflows/phpstan.yml@main
26+
uses: php-forge/actions/.github/workflows/phpstan.yml@v1
2727
with:
2828
concurrency-group: phpstan-${{ github.workflow }}-${{ github.ref }}
2929
phpstan-console:
30-
uses: php-forge/actions/.github/workflows/phpstan.yml@main
30+
uses: php-forge/actions/.github/workflows/phpstan.yml@v1
3131
with:
3232
configuration: 'phpstan-console.neon'
3333
concurrency-group: phpstan-console-${{ github.workflow }}-${{ github.ref }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Bug #71: Update `.gitattributes` to exclude additional files from the package (@terabytesoftw)
66
- Bug #72: Exclude `phpstan-console.neon` from the package in `.gitattributes` (@terabytesoftw)
7+
- Bug #73: Update workflow actions to use version `v1` stable version instead of main, update `LICENSE.md`.
78

89
## 0.3.1 August 16, 2025
910

LICENSE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ are permitted provided that the following conditions are met:
1111
* Redistributions in binary form must reproduce the above copyright notice,
1212
this list of conditions and the following disclaimer in the documentation
1313
and/or other materials provided with the distribution.
14-
* Neither the name of Yii Software nor the names of its contributors may be
15-
used to endorse or promote products derived from this software without
16-
specific prior written permission.
14+
* Neither the name of Yii2 Extensions (Terabytesoftw) nor the names of its
15+
contributors may be used to endorse or promote products derived from this
16+
software without specific prior written permission.
1717

1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1919
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED

0 commit comments

Comments
 (0)