Skip to content

Commit 081586f

Browse files
committed
Try to fix types
1 parent 126c78a commit 081586f

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/plugins-ci-mongo.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: ${{ inputs.fail-fast }}
105+
fail-fast: >
106+
inputs.fail-fast
106107
matrix:
107108
node-version: [14, 16, 18, 20]
108109
os: [ubuntu-latest]

.github/workflows/plugins-ci-mysql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ jobs:
104104
permissions:
105105
contents: read
106106
strategy:
107-
fail-fast: ${{ inputs.fail-fast }}
107+
fail-fast: >
108+
inputs.fail-fast
108109
matrix:
109110
node-version: [14, 16, 18, 20]
110111
os: [ubuntu-latest]

.github/workflows/plugins-ci-postgres.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: ${{ inputs.fail-fast }}
105+
fail-fast: >
106+
inputs.fail-fast
106107
matrix:
107108
node-version: [14, 16, 18, 20]
108109
os: [ubuntu-latest]

.github/workflows/plugins-ci-redis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
name: Node.js ${{ matrix.node-version }} - ${{ matrix.db }}
101101
runs-on: ubuntu-latest
102102
strategy:
103-
fail-fast: ${{ inputs.fail-fast }}
103+
fail-fast: >
104+
inputs.fail-fast
104105
matrix:
105106
node-version: [14, 16, 18, 20]
106107
db: [5, 6, 7]

.github/workflows/plugins-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: ${{ inputs.fail-fast }}
105+
fail-fast: >
106+
inputs.fail-fast
106107
matrix:
107108
node-version: [14, 16, 18, 20]
108109
os: [macos-latest, ubuntu-latest, windows-latest]

0 commit comments

Comments
 (0)