From 9f38928414e6a39044f9b148692e90f3e1fd3433 Mon Sep 17 00:00:00 2001 From: Glyph Date: Wed, 5 Mar 2025 18:26:00 -0800 Subject: [PATCH] github is deprecating the ubuntu 20.04 actions runner image (#4607) see https://github.com/actions/runner-images/issues/11101 --- .github/workflows/upload_binary.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload_binary.yml b/.github/workflows/upload_binary.yml index 1bde446..4123101 100644 --- a/.github/workflows/upload_binary.yml +++ b/.github/workflows/upload_binary.yml @@ -13,13 +13,13 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, ubuntu-20.04, macos-latest] + os: [windows-2019, ubuntu-22.04, macos-latest] include: - os: windows-2019 pathsep: ";" asset_name: black_windows.exe executable_mime: "application/vnd.microsoft.portable-executable" - - os: ubuntu-20.04 + - os: ubuntu-22.04 pathsep: ":" asset_name: black_linux executable_mime: "application/x-executable"