GHA: simplify boolean if comparisons

Closes #21709
This commit is contained in:
Viktor Szakats 2026-05-21 11:28:58 +02:00
parent af511a22cb
commit c583e825f7
No known key found for this signature in database
5 changed files with 45 additions and 45 deletions

View file

@ -59,7 +59,7 @@ jobs:
lookup-only: true
- name: 'install test prereqs (stunnel)'
if: ${{ steps.cache-stunnel.outputs.cache-hit != 'true' }}
if: ${{ !steps.cache-stunnel.outputs.cache-hit }}
timeout-minutes: 2
shell: bash
run: |
@ -647,7 +647,7 @@ jobs:
key: ${{ runner.os }}-mingw-w64-${{ matrix.ver }}-${{ matrix.env }}
- name: 'install compiler (gcc ${{ matrix.ver }}-${{ matrix.env }})'
if: ${{ steps.cache-compiler.outputs.cache-hit != 'true' }}
if: ${{ !steps.cache-compiler.outputs.cache-hit }}
timeout-minutes: 5
env:
MATRIX_URL: '${{ matrix.url }}'