Skip to content

Commit af6df68

Browse files
committed
Fix: github ci deprecated
1 parent be7444b commit af6df68

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ jobs:
99
DB_USERNAME: root
1010
DB_PASSWORD: phplist
1111
BROADCAST_DRIVER: log
12-
PHPLIST_DATABASE_DRIVER: pdo_mysql
13-
PHPLIST_DATABASE_HOST: 127.0.0.1
14-
PHPLIST_DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }}
15-
PHPLIST_DATABASE_NAME: ${{ env.DB_DATABASE }}
16-
PHPLIST_DATABASE_USER: ${{ env.DB_USERNAME }}
17-
PHPLIST_DATABASE_PASSWORD: ${{ env.DB_PASSWORD }}
1812
services:
1913
mysql:
2014
image: mysql:5.7
@@ -45,7 +39,7 @@ jobs:
4539
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -u${{ env.DB_USERNAME }} -p${{ env.DB_PASSWORD }} -e "SHOW DATABASES"
4640
- name: Get composer cache directory
4741
id: composer-cache
48-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
42+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4943
- name: Cache composer dependencies
5044
uses: actions/cache@v3
5145
with:

0 commit comments

Comments
 (0)