Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
node-version: [16.x, 22.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
Comment on lines 21 to 25

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declining β€” this is valid YAML. Block sequence entries may sit at the same indentation column as their parent mapping key (a "zero-indented" block sequence); it parses identically to the extra-indented form. This workflow has parsed and run in exactly this form for years, and actionlint β€” which uses a real YAML parser β€” passes it cleanly.

node-version: ${{ matrix.node-version }}
- run: |
Expand Down
Loading