Skip to content

Commit

Permalink
[#1930] fix syntax
Browse files Browse the repository at this point in the history
Error when evaluating 'runs-on' for job 'build-java-8-plus'. .github/workflows/ci.yml (Line: 32, Col: 14): Unexpected type of value '', expected type: OneOf.
  • Loading branch information
remkop committed Jan 24, 2023
1 parent 9f94fbe commit 87fa116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- java-version: 18
skippable: true

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.skippable }}
runs-on: ${{ fromJSON(matrix.os) }}
continue-on-error: ${{ matrix.os == 'macos-latest' || fromJSON(matrix.skippable) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@2e205a28d0e1da00c5f53b161f4067b052c61f34 # v1
Expand Down

0 comments on commit 87fa116

Please sign in to comment.