Skip to content

Commit 4262b56

Browse files
committed
fix: correct branch names for daily workflow
1 parent 1484aed commit 4262b56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
get-supported-versions:
1414
runs-on: ubuntu-latest
1515
outputs:
16-
# JSON array of versions to check, e.g. '["v14","v16","v18","v19","main"]'
16+
# JSON array of versions to check, e.g. '["v14.x","v16.x","v18.x","v19.x","main"]'
1717
matrix: ${{ steps.fetch-versions.outputs.matrix }}
1818
steps:
1919
- id: fetch-versions
20-
run: echo "matrix=$(npx -p @pkgjs/nv nv ls supported | jq -c -n '[inputs.versionName] | . += ["main"]')" >> $GITHUB_OUTPUT
20+
run: echo "matrix=$(npx -p @pkgjs/nv nv ls supported | jq -c -n '[inputs.versionName + ".x"] | . += ["main"]')" >> $GITHUB_OUTPUT
2121
check-vulns:
2222
name: Check vulnerabilities on ${{ matrix.nodejsStream }}
2323
needs: get-supported-versions

0 commit comments

Comments
 (0)