Skip to content

Commit 51ab933

Browse files
committed
Adjust action versions
1 parent 2f5fc44 commit 51ab933

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
6868

6969
- name: "Upload coverage file"
70-
uses: "actions/upload-artifact@v2"
70+
uses: "actions/upload-artifact@v4"
7171
with:
7272
name: "phpunit-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ matrix.dbal-version }}.coverage"
7373
path: "coverage.xml"

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Validate composer.json and composer.lock
1818
run: composer validate --strict
1919

2020
- name: Cache Composer packages
2121
id: composer-cache
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: vendor
2525
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ composer.lock
44
/.phpcs-cache
55
/coverage/
66
/.phpunit.cache/
7+
.phpunit.result.cache

0 commit comments

Comments
 (0)