Skip to content

Commit

Permalink
chore(cd): Actualiza actions/checkout y actions/setup-node a v4
Browse files Browse the repository at this point in the history
  • Loading branch information
lupomontero committed Jun 11, 2024
1 parent 0a8b7a4 commit ea34dc1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
node-version: [18, 20]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand All @@ -33,8 +33,8 @@ jobs:
)
needs: [test]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
Expand All @@ -51,8 +51,8 @@ jobs:
&& !contains(github.ref, 'beta')
needs: [test]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
Expand Down

0 comments on commit ea34dc1

Please sign in to comment.