From 79faf9556e6b849cbe900d485a4f9b430dc2882e Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Sat, 21 Feb 2026 21:03:43 -0500 Subject: [PATCH] ci: fix version mismatches in build-cli.yml - Update Zig from 0.15.0 to 0.15.2 (consistent with ci.yml) - Update SQLite from 3450000 to 3480000 (consistent with Makefile) --- .forgejo/workflows/build-cli.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build-cli.yml b/.forgejo/workflows/build-cli.yml index 31ea11c..0c56441 100644 --- a/.forgejo/workflows/build-cli.yml +++ b/.forgejo/workflows/build-cli.yml @@ -31,12 +31,12 @@ jobs: - name: Setup Zig uses: goto-bus-stop/setup-zig@v2 with: - version: 0.15.0 + version: 0.15.2 - name: Fetch SQLite Amalgamation run: | cd cli - make build-sqlite SQLITE_VERSION=3450000 + make build-sqlite SQLITE_VERSION=3480000 - name: Build Release Binary run: | @@ -61,12 +61,12 @@ jobs: - name: Setup Zig uses: goto-bus-stop/setup-zig@v2 with: - version: 0.15.0 + version: 0.15.2 - name: Fetch SQLite Amalgamation run: | cd cli - make build-sqlite SQLITE_VERSION=3450000 + make build-sqlite SQLITE_VERSION=3480000 - name: Build Release Binary run: |