Use newest SQLite on Github Actions

This commit is contained in:
Kacper Madej
2025-01-10 13:19:15 +07:00
parent 536fbe9d9e
commit a2e1ef2439
2 changed files with 32 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
name: "Install SQLite"
description: "Downloads SQLite directly from https://sqlite.org"
runs:
using: "composite"
steps:
- name: Install SQLite
env:
SQLITE_VERSION: "3470200"
YEAR: 2024
run: |
curl -o /tmp/sqlite.zip https://www.sqlite.org/$YEAR/sqlite-tools-linux-x64-$SQLITE_VERSION.zip > /dev/null
unzip -j /tmp/sqlite.zip sqlite3 -d /usr/local/bin/
sqlite3 --version
shell: bash