Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/Steeltoe.All.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-26]
include:
- os: ubuntu-latest
runDockerContainers: true
- os: windows-latest
skipIntegrationTests: true
- os: macos-latest
- os: macos-26
skipIntegrationTests: true
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
10.0.*

- name: Turn off dev certificate (macOS only)
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-26' }}
# Setting DOTNET_GENERATE_ASPNET_CERTIFICATE to "false" makes it easier to determine which test failed on macOS when it tried to start a web server with https enabled.
# Without setting this, the following message appears in the logs:
# The application is trying to access the ASP.NET Core developer certificate key. A prompt might appear to ask for permission to access the key.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/component-shared-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ${{ inputs.OS }}-latest
runs-on: ${{ inputs.OS }}-${{ inputs.OS == 'macos' && '26' || 'latest' }}

services:
eurekaServer:
Expand Down
Loading