From ff96f7d071203f67c551a0d48694e0323a064f25 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Fri, 12 Sep 2025 15:44:35 -0600 Subject: [PATCH 1/4] CI: Test with latest tagged Zig release --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 34d0949bda725..f411920553ae6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - zig-version: [0.14.0] + zig-version: [0.14.0, latest] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: From 79aeb274901256a262014243413dcf2185adacab Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Fri, 12 Sep 2025 15:48:55 -0600 Subject: [PATCH 2/4] Does it need quotes??? --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f411920553ae6..f07cc47dd9b24 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - zig-version: [0.14.0, latest] + zig-version: [0.14.0, 'latest'] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: From 3e7f1593333af901aefd59a3af13351277cf0561 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Fri, 12 Sep 2025 16:38:14 -0600 Subject: [PATCH 3/4] Try "0.15.1" rather than "latest" --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f07cc47dd9b24..4b984b3534550 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - zig-version: [0.14.0, 'latest'] + zig-version: [0.14.0, 0.15.1] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: From fdae96e7335bed0cd18678a81083432aeb55ba48 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Sat, 13 Sep 2025 21:20:12 -0600 Subject: [PATCH 4/4] Use updated setup-zig action --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4b984b3534550..35e21a6b3e648 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - zig-version: [0.14.0, 0.15.1] + zig-version: [0.14.0, latest] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -28,7 +28,7 @@ jobs: sudo apt-get install libgles-dev libpulse-dev libxext-dev - name: Setup Zig - uses: mlugg/setup-zig@v1 + uses: mlugg/setup-zig@v2 with: version: ${{ matrix.zig-version }}