Skip to content

Commit

Permalink
fix(actions): node action version
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelramos committed Jan 30, 2024
1 parent 3f7fb8f commit efd74dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ author: "[email protected]"
inputs:
node-version:
description: 'Node version'
default: '20'
default: 20.x
type: string

runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.version }}
node-version: ${{ inputs.node-version }}
cache: 'pnpm'
cache-dependency-path: 'pnpm-workspace.yml'

- uses: actions/cache@v3
name: Setup node cache
Expand Down

0 comments on commit efd74dd

Please sign in to comment.