Skip to content

Commit f102520

Browse files
Merge pull request #785 from Chris53897/feature/ci
ci: bump github action versions
2 parents d210295 + 549232e commit f102520

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

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

1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
@@ -30,23 +30,23 @@ jobs:
3030
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3131

3232
- name: Fix PHPUnit Version PHP < 7.4
33-
uses: nick-invision/retry@v2
33+
uses: nick-invision/retry@v3
3434
with:
3535
timeout_minutes: 5
3636
max_attempts: 5
3737
command: composer require "phpunit/phpunit:^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8" --dev --no-update --no-interaction
3838
if: "matrix.php < 7.4"
3939

4040
- name: Fix PHPUnit Version PHP >= 7.4
41-
uses: nick-invision/retry@v2
41+
uses: nick-invision/retry@v3
4242
with:
4343
timeout_minutes: 5
4444
max_attempts: 5
4545
command: composer require "phpunit/phpunit:^9.3.3" --dev --no-update --no-interaction
4646
if: "matrix.php >= 7.4"
4747

4848
- name: Install PHP Dependencies
49-
uses: nick-invision/retry@v2
49+
uses: nick-invision/retry@v3
5050
with:
5151
timeout_minutes: 5
5252
max_attempts: 5

0 commit comments

Comments
 (0)