From 9ce8a1ec3cf85bec2da2d13ef9934c72280044ac Mon Sep 17 00:00:00 2001 From: Mattias Reichel Date: Thu, 2 Jan 2025 15:19:58 +0100 Subject: [PATCH] ci: remove `windows-latest` from the os matrix `windows-latest` does not seem to provide a container environment. --- .github/workflows/gradle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index cdf5b79..9cce469 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -12,7 +12,7 @@ jobs: name: "Build Project" strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-24.04] # windows-latest and macos-latest do not provide a container environment runs-on: ${{ matrix.os }} steps: - name: "📥 Checkout repository"