Skip to content

Commit 05f967d

Browse files
committed
Type coercion round 2
1 parent 081586f commit 05f967d

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: >
106-
inputs.fail-fast
105+
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
107106
matrix:
108107
node-version: [14, 16, 18, 20]
109108
os: [ubuntu-latest]

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ jobs:
104104
permissions:
105105
contents: read
106106
strategy:
107-
fail-fast: >
108-
inputs.fail-fast
107+
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
109108
matrix:
110109
node-version: [14, 16, 18, 20]
111110
os: [ubuntu-latest]

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: >
106-
inputs.fail-fast
105+
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
107106
matrix:
108107
node-version: [14, 16, 18, 20]
109108
os: [ubuntu-latest]

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

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

.github/workflows/plugins-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ jobs:
102102
permissions:
103103
contents: read
104104
strategy:
105-
fail-fast: >
106-
inputs.fail-fast
105+
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
107106
matrix:
108107
node-version: [14, 16, 18, 20]
109108
os: [macos-latest, ubuntu-latest, windows-latest]

0 commit comments

Comments
 (0)