From 91d9a599950bc7491c2b68793576cf1be3d51a61 Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Wed, 2 Oct 2024 15:05:31 -0700 Subject: [PATCH] revert setup dotnet version bump --- .github/workflows/ci.yml | 6 +++--- builder.json | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97caa45..055119b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,7 +94,7 @@ jobs: arch: [x64] steps: - name: Setup dotnet # Use setup dotnet action as Windows-2019 image no longer contains .net5.0 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v3 with: dotnet-version: | 3.1.x @@ -117,7 +117,7 @@ jobs: arch: [x86, x64] steps: - name: Setup dotnet - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v3 with: #TODO: Specify architecture to install 32 bit .net when that is supported (https://github.com/actions/setup-dotnet/issues/72) dotnet-version: | @@ -138,7 +138,7 @@ jobs: runs-on: macos-12 steps: - name: Setup dotnet # Use setup dotnet action as macos-12 image no longer contains .net5.0 and .net3.1 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v3 with: dotnet-version: | 3.1.x diff --git a/builder.json b/builder.json index 1e57849..79c8c91 100644 --- a/builder.json +++ b/builder.json @@ -14,7 +14,9 @@ "hosts": { "al2": { "packages": [ - "libicu" + "libicu", + "zlib", + "libcurl" ] } },