Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin macos runner version #2050

Merged
merged 1 commit into from Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/arm2pulumi-release.yml
Expand Up @@ -38,7 +38,7 @@ env:
PULUMI_API: https://api.pulumi-staging.io
jobs:
release:
runs-on: macos-latest
runs-on: macos-11
steps:
- name: Checkout Repo
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -131,7 +131,7 @@ jobs:
status: ${{ job.status }}
build_sdks:
needs: prerequisites
runs-on: ${{ matrix.language == 'dotnet' && 'macos-latest' || 'ubuntu-latest' }}
runs-on: ${{ matrix.language == 'dotnet' && 'macos-11' || 'ubuntu-latest' }}
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
fields: repo,commit,author,action
status: ${{ job.status }}
publish:
runs-on: macos-latest
runs-on: macos-11
needs: build_sdks
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Expand Up @@ -122,7 +122,7 @@ jobs:
status: ${{ job.status }}
build_sdks:
needs: prerequisites
runs-on: ${{ matrix.language == 'dotnet' && 'macos-latest' || 'ubuntu-latest' }}
runs-on: ${{ matrix.language == 'dotnet' && 'macos-11' || 'ubuntu-latest' }}
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
fields: repo,commit,author,action
status: ${{ job.status }}
publish:
runs-on: macos-latest
runs-on: macos-11
needs: build_sdks
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -123,7 +123,7 @@ jobs:
status: ${{ job.status }}
build_sdks:
needs: prerequisites
runs-on: ${{ matrix.language == 'dotnet' && 'macos-latest' || 'ubuntu-latest' }}
runs-on: ${{ matrix.language == 'dotnet' && 'macos-11' || 'ubuntu-latest' }}
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
fields: repo,commit,author,action
status: ${{ job.status }}
publish:
runs-on: macos-latest
runs-on: macos-11
needs: build_sdks
strategy:
fail-fast: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-acceptance-tests.yml
Expand Up @@ -151,7 +151,7 @@ jobs:
github.event.pull_request.head.repo.full_name == github.repository
build_sdks:
needs: prerequisites
runs-on: ${{ matrix.language == 'dotnet' && 'macos-latest' || 'ubuntu-latest' }}
runs-on: ${{ matrix.language == 'dotnet' && 'macos-11' || 'ubuntu-latest' }}
strategy:
fail-fast: true
matrix:
Expand Down