Skip to content

Commit 5636625

Browse files
authored
Merge pull request #333 from javierbrea/release
Release 4.2.1
2 parents 3fcec31 + 8c1cc8e commit 5636625

File tree

7 files changed

+509
-1101
lines changed

7 files changed

+509
-1101
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
node: ["16.14.0", "18.2.0", "20.5.1"]
17+
node: ["18.20.2", "20.13.1", "22.2.0"]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
node-version: ${{ matrix.node }}
2525
- name: Cache npm
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
env:
2828
cache-name: cache-npm
2929
with:
@@ -41,7 +41,7 @@ jobs:
4141
- name: Test unit
4242
run: npm run test:unit
4343
- name: Upload test results
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: coverage-${{ matrix.node }}
4747
path: coverage
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: windows-2022
5151
strategy:
5252
matrix:
53-
node: ["16.14.0", "18.2.0", "20.5.1"]
53+
node: ["18.20.2", "20.13.1", "22.2.0"]
5454
steps:
5555
- name: Checkout
5656
uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
node-version: ${{ matrix.node }}
6161
- name: Cache npm
62-
uses: actions/cache@v3
62+
uses: actions/cache@v4
6363
env:
6464
cache-name: cache-windows-npm
6565
with:
@@ -84,9 +84,9 @@ jobs:
8484
with:
8585
fetch-depth: 0
8686
- name: Download test results
87-
uses: actions/download-artifact@v3
87+
uses: actions/download-artifact@v4
8888
with:
89-
name: coverage-18.2.0
89+
name: coverage-18.20.2
9090
path: coverage
9191
- name: Coveralls
9292
uses: coverallsapp/github-action@master

.github/workflows/publish-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Setup .npmrc file to publish to GitHub Packages
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '18.x'
13+
node-version: '20.x'
1414
registry-url: 'https://npm.pkg.github.com'
1515
# Defaults to the user or organization that owns the workflow file
1616
scope: '@javierbrea'

.github/workflows/publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-node@v4
1111
with:
12-
node-version: '18.x'
12+
node-version: '20.x'
1313
registry-url: 'https://registry.npmjs.org/'
1414
- run: npm ci
1515
- run: npm publish

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1111
### Removed
1212
### BREAKING CHANGES
1313

14+
## [4.2.1] - 2024-05-16
15+
16+
### Changed
17+
- chore: Bump eslint-module-utils to 2.8.1
18+
- chore: Update devDependencies
19+
- chore: Upgrade Node.js versions used in pipelines. Remove Node.js 16.x. Add Node.js 22.x
20+
- chore: Bump actions/cache to v4
21+
- chore: Bump actions/upload-artifact to v4
22+
- chore: Bump actions/download-artifact to v4
23+
1424
## [4.2.0] - 2024-01-16
1525

1626
### Added

0 commit comments

Comments
 (0)