From 3a90a5213be18de51ca77bc9d9ca80f6fc362d37 Mon Sep 17 00:00:00 2001 From: Jae B Date: Sun, 18 Jan 2026 15:23:34 +1100 Subject: [PATCH] update github actions to latest versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7fa18d..88f1768 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,10 +24,10 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v5 with: java-version: '17' distribution: 'temurin' @@ -42,13 +42,13 @@ jobs: # Stable Zig Builds # - - name: Setup Zig Stable (0.15.1) + - name: Setup Zig Stable (0.15.2) # note(jae): 2024-09-15 # Uses download mirror first as preferred by Zig Foundation # see: https://ziglang.org/news/migrate-to-self-hosting/ uses: mlugg/setup-zig@v2 with: - version: "0.15.1" + version: "0.15.2" - name: Build Minimal Example (Zig Stable) run: zig build -Dandroid=true --verbose