Skip to content

Commit 2bbf841

Browse files
authored
Merge pull request msyk#113 from matsuo/update-actions-for-ci
Update actions for CI
2 parents 04199b4 + 6d95090 commit 2bbf841

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/php-src.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
php: [ '8.1', '8.2', '8.3', '8.4', 'master' ]
1717
steps:
18-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: Run docker compose
2020
shell: bash
2121
run: |

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2727

2828
- name: Install PHP with extensions
29-
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
29+
uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # v2.32.0
3030
with:
3131
php-version: ${{ matrix.php-version }}
3232
coverage: none

.github/workflows/phpstan.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- current-level: 1
2222
- max-level: 2
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2525

2626
- name: Setup PHP
27-
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
27+
uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # v2.32.0
2828
with:
2929
php-version: '8.4'
3030

@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Restore cached baseline for PHPStan
3535
id: cache-baseline-restore
36-
uses: actions/cache/restore@v4
36+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
3737
with:
3838
path: |
3939
test/phpstan-baseline.neon
@@ -64,7 +64,7 @@ jobs:
6464
- name: Save the baseline for PHPStan
6565
id: cache-baseline-save
6666
if: matrix.level == matrix.max-level && github.event.pull_request.merged == true
67-
uses: actions/cache/save@v4
67+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6868
with:
6969
path: |
7070
test/phpstan-baseline.neon

0 commit comments

Comments
 (0)