From 69a31731eed71e58cdcc3c6dfd7f8fd7acf023d4 Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 22 Aug 2022 23:47:49 -0700 Subject: [PATCH] Update SDL to 2.24.0 in Windows CI I missed this because to check for all instances of 2.0.22, I did `rg -F '2.0.22'`. But ripgrep doesn't search in hidden directories by default, so the actual command to run is `rg -F. '2.0.22'`. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4743067f..e1d4f231 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: runs-on: windows-latest env: - SDL_VERSION: 2.0.22 + SDL_VERSION: 2.24.0 steps: - uses: actions/checkout@v1