We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea82c66 commit 0dd9e34Copy full SHA for 0dd9e34
.github/workflows/bazel.yml
@@ -45,7 +45,8 @@ on:
45
jobs:
46
bazel:
47
name: ${{ inputs.name }}
48
- runs-on: ${{ inputs.os }}-latest
+ # Use windows-latest once https://github.com/actions/runner-images/issues/7662 is fixed.
49
+ runs-on: ${{ inputs.os == 'windows' && 'windows-2019' || format('{0}-latest', inputs.os) }}
50
env:
51
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
steps:
0 commit comments