Skip to content

Commit 2fb2b1e

Browse files
committed
Issue #67: Implement MariaDB/PostgreSQL connection
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent 727d2b7 commit 2fb2b1e

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout
24-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2526

2627
- name: Install PHP
2728
uses: shivammathur/setup-php@v2
@@ -36,7 +37,7 @@ jobs:
3637
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3738

3839
- name: Cache dependencies installed with composer
39-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4041
with:
4142
path: ${{ env.COMPOSER_CACHE_DIR }}
4243
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/qodana_code_quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
checks: write
1616
strategy:
1717
matrix:
18-
php-versions: [ '8.2', '8.3', '8.4']
18+
php-versions: [ '8.2', '8.3', '8.4', '8.5']
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
2323
fetch-depth: 0 # a full history is required for pull request analysis
@@ -33,7 +33,7 @@ jobs:
3333
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3434

3535
- name: Cache dependencies installed with composer
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ${{ env.COMPOSER_CACHE_DIR }}
3939
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout
24-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2526

2627
- name: Install PHP
2728
uses: shivammathur/setup-php@v2
@@ -35,7 +36,7 @@ jobs:
3536
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3637

3738
- name: Cache dependencies installed with composer
38-
uses: actions/cache@v4
39+
uses: actions/cache@v5
3940
with:
4041
path: ${{ env.COMPOSER_CACHE_DIR }}
4142
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)