Skip to content

Commit

Permalink
GitHub Actions: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirain1700 committed May 13, 2024
1 parent 88c1e11 commit 4ff7c9f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
node-version: [18.x]
node-version: [20.x]

runs-on: ${{ matrix.platform }}

outputs:
source_any_changed: ${{ steps.changed-files.outputs.any_changed }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.4
with:
fetch-depth: 0

- name: Check changed files
id: changed-files
uses: tj-actions/changed-files@v41.0.0
uses: tj-actions/changed-files@v44.4.0
with:
files: |
src/**
Expand All @@ -39,7 +39,7 @@ jobs:
package-lock.json
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down Expand Up @@ -72,13 +72,13 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Check previous dev package
id: check-prev
uses: actions/github-script@v6
uses: actions/github-script@v7.0.1
with:
script: |
const { execSync } = require("child_process");
Expand Down

0 comments on commit 4ff7c9f

Please sign in to comment.