We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8068d commit c066fd9Copy full SHA for c066fd9
.github/actions/commons/action.yml
@@ -15,6 +15,7 @@ runs:
15
uses: shivammathur/setup-php@v2
16
with:
17
php-version: '8.3'
18
+ extensions: sqlite3
19
20
# Update SQLite so it is compatible with Drupal 11.
21
# Solution from https://github.com/actions/runner-images/issues/9033#issuecomment-1857780470
@@ -24,8 +25,8 @@ runs:
24
25
- name: Reinstall sqlite3
26
shell: bash
27
run: |
- set -e
28
- download_link="https://www.sqlite.org/2023/sqlite-tools-linux-x64-3440200.zip"
+ set -ex
29
+ download_link="https://www.sqlite.org/2024/sqlite-tools-linux-x64-3460100.zip"
30
wget "$download_link" -P /tmp
31
unzip "/tmp/$(basename "$download_link")" -d /tmp
32
sudo install /tmp/sqlite3 /usr/local/bin/
0 commit comments