Skip to content

Commit c066fd9

Browse files
committed
chore: try to update php sqlite
Current error: The database server version /3.37.2/ is less than the minimum required version /3.45/.
1 parent 6c8068d commit c066fd9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/commons/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ runs:
1515
uses: shivammathur/setup-php@v2
1616
with:
1717
php-version: '8.3'
18+
extensions: sqlite3
1819

1920
# Update SQLite so it is compatible with Drupal 11.
2021
# Solution from https://github.com/actions/runner-images/issues/9033#issuecomment-1857780470
@@ -24,8 +25,8 @@ runs:
2425
- name: Reinstall sqlite3
2526
shell: bash
2627
run: |
27-
set -e
28-
download_link="https://www.sqlite.org/2023/sqlite-tools-linux-x64-3440200.zip"
28+
set -ex
29+
download_link="https://www.sqlite.org/2024/sqlite-tools-linux-x64-3460100.zip"
2930
wget "$download_link" -P /tmp
3031
unzip "/tmp/$(basename "$download_link")" -d /tmp
3132
sudo install /tmp/sqlite3 /usr/local/bin/

0 commit comments

Comments
 (0)