shithub: opus

Download patch

ref: 3692173d65872e6f1f1d4f4c2b3f0b22c4c5a309
parent: 9c779ed8fd5ad2cc38ab22b3fe2f8f024444b05f
author: Ralph Giles <giles@thaumas.net>
date: Sun Aug 17 16:53:51 EDT 2025

github actions: update NDK_VERSION to 27.3

Address github ci failures. The default runner image has moved
to a new point release of the Android Native Development Toolkit,
and builds were failing because the specific version we had pinned
was no longer available.

Current default version number from the listing at
https://github.com/actions/runner-images/blob/ubuntu24/20250810.1/images/ubuntu/Ubuntu2404-Readme.md#android

--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -3,7 +3,7 @@
 on: [push, pull_request]
 
 env:
-  NDK_VERSION: 27.2.12479018
+  NDK_VERSION: 27.3.13750724
 
 jobs:
   CMakeVersionTest:
--- a/.github/workflows/dred.yml
+++ b/.github/workflows/dred.yml
@@ -4,7 +4,7 @@
 on: [push, pull_request]
 
 env:
-  NDK_VERSION: 27.2.12479018
+  NDK_VERSION: 27.3.13750724
 
 jobs:
   CMakeBuild:
--