From 18ab31ad660a6188c98972fe8ec311ad9bfbabe1 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Fri, 22 Aug 2025 11:59:17 -0700 Subject: [PATCH] update zig-previous workflow in zig 0.14.x branch --- .gitea/workflows/zig-previous.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/zig-previous.yaml b/.gitea/workflows/zig-previous.yaml index 3937f2f..e2a14a0 100644 --- a/.gitea/workflows/zig-previous.yaml +++ b/.gitea/workflows/zig-previous.yaml @@ -3,7 +3,7 @@ on: workflow_dispatch: push: branches: - - 'zig-0.13' + - 'zig-0.14.x' env: ACTIONS_RUNTIME_TOKEN: ${{ secrets.GITHUB_TOKEN }} ACTIONS_RUNTIME_URL: ${{ env.GITHUB_SERVER_URL }}/api/actions_pipeline/ @@ -18,13 +18,11 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 with: - ref: zig-0.13 + ref: zig-0.14.x - name: Setup Zig uses: https://github.com/mlugg/setup-zig@v2.0.1 with: - version: 0.13.0 - - name: Restore Zig caches - uses: https://github.com/Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929 + version: 0.14.0 - name: Run smoke test run: zig build smoke-test --verbose - name: Run full tests