From 6080e4985d971d2d85f9779bfc2ae056a9f4f3c2 Mon Sep 17 00:00:00 2001 From: Oliver Graff Date: Mon, 8 Jul 2024 20:16:33 -0700 Subject: [PATCH] Use newer macos runners (#2732) --- .github/workflows/release.yaml | 10 +++++----- MODULE.bazel | 2 +- version.bzl | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8c26eb4652..08be4d6a46 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -50,7 +50,7 @@ jobs: matrix: # Create a job for each target triple include: - - os: macos-11 + - os: macos-12 env: TARGET: "aarch64-apple-darwin" - os: ubuntu-20.04 @@ -59,7 +59,7 @@ jobs: - os: windows-2022 env: TARGET: "aarch64-pc-windows-msvc" - - os: macos-11 + - os: macos-12 env: TARGET: "x86_64-apple-darwin" - os: ubuntu-20.04 @@ -88,10 +88,10 @@ jobs: TARGET: "${{ matrix.env.TARGET }}" - name: Setup macos build tooling run: | - sudo xcode-select -s /Applications/Xcode_12.4.app/Contents/Developer/ + sudo xcode-select -s /Applications/Xcode_13.1.app/Contents/Developer/ # Set SDK environment variables - echo "SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path)" >> $GITHUB_ENV - echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version)" >> $GITHUB_ENV + echo "SDKROOT=$(xcrun -sdk macosx12.0 --show-sdk-path)" >> $GITHUB_ENV + echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx12.0 --show-sdk-platform-version)" >> $GITHUB_ENV if: startswith(matrix.os, 'macos') - name: Setup Windows Bazelrc run: | diff --git a/MODULE.bazel b/MODULE.bazel index 8fb7213ad0..5484512013 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -2,7 +2,7 @@ module( name = "rules_rust", - version = "0.47.0", + version = "0.47.1", ) bazel_dep( diff --git a/version.bzl b/version.bzl index 815fb27981..931c42ab4e 100644 --- a/version.bzl +++ b/version.bzl @@ -1,3 +1,3 @@ """The version of rules_rust.""" -VERSION = "0.47.0" +VERSION = "0.47.1"