From 884adb4865386f03093b4463131586970250d203 Mon Sep 17 00:00:00 2001 From: skshetry <18718008+skshetry@users.noreply.github.com> Date: Tue, 28 Feb 2023 17:28:45 +0545 Subject: [PATCH] build: use macos-11 to build package macos-10.15 image has been deprecated for a while, see https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/ and https://github.com/actions/runner-images/issues/5583. setup-ruby removed the support for these images yesterday: https://github.com/ruby/setup-ruby/pull/467. which fails our package builds. Now using macos-11 to build packages. --- .github/workflows/packages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packages.yaml b/.github/workflows/packages.yaml index 40df63f1fa..38980c4d3d 100644 --- a/.github/workflows/packages.yaml +++ b/.github/workflows/packages.yaml @@ -19,7 +19,7 @@ jobs: include: - {pkg: "deb", os: "ubuntu-20.04", asset: "dvc_${{ github.event.release.tag_name }}_amd64.deb"} - {pkg: "rpm", os: "ubuntu-20.04", asset: "dvc-${{ github.event.release.tag_name }}-1.x86_64.rpm"} - - {pkg: "osxpkg", os: "macos-10.15", asset: "dvc-${{ github.event.release.tag_name }}.pkg"} + - {pkg: "osxpkg", os: "macos-11", asset: "dvc-${{ github.event.release.tag_name }}.pkg"} - {pkg: "exe", os: "windows-2019", asset: "dvc-${{ github.event.release.tag_name }}.exe"} name: ${{ matrix.pkg }}