Skip to content

Commit

Permalink
chore: updated action/setup-node to v4 and hmarr/debug-action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Dec 12, 2024
1 parent 2a20dbf commit 2ec3f7d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
- uses: hmarr/debug-action@v3

checks:
name: Check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
path: ~/.npm # this is cache where npm installs from before going out to the network
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- 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 install --prefer-offline
Expand All @@ -45,7 +45,7 @@ jobs:
path: ~/.npm # this is cache where npm installs from before going out to the network
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- 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 install --prefer-offline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
- uses: hmarr/debug-action@v3

install:
name: Install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
- uses: hmarr/debug-action@v3

checks:
name: Check
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
needs: [checks, security]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
# Setup .npmrc file to publish to npm
Expand Down

0 comments on commit 2ec3f7d

Please sign in to comment.