Skip to content

Commit

Permalink
build(dev-deps): bump commitlint from 11.0.0 to 19.2.2 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
derevnjuk authored Apr 15, 2024
1 parent 9b28268 commit 10dd8a0
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 391 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
node_arch: x64
command: build:gyp
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
architecture: ${{ matrix.node_arch }}

- name: Install dependencies
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Prebuild package
run: npm run ${{ matrix.command }} -- ${{ matrix.args }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: prebuilds/
Expand All @@ -48,17 +48,17 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://registry.npmjs.org'

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-artifacts
path: prebuilds
Expand All @@ -71,9 +71,9 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://npm.pkg.github.com'
scope: '@NeuraLegion'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GPR_TOKEN }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- run: npm ci --ignore-scripts
- run: npm run semantic-release
Expand Down
Loading

0 comments on commit 10dd8a0

Please sign in to comment.