Skip to content

Commit 7fbf363

Browse files
authored
Merge pull request #558 from javierbrea/chore/deps
Update devDependencies
2 parents 0594cc6 + 95e1dda commit 7fbf363

File tree

10 files changed

+66
-61
lines changed

10 files changed

+66
-61
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
node: ["16.14.0", "18.2.0", "20.5.1"]
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
- name: Extract branch name
1818
shell: bash
1919
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
2020
id: extract-branch
2121
- name: Use Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node }}
2525
- name: Cache node modules
@@ -75,7 +75,7 @@ jobs:
7575
needs: test
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979
with:
8080
fetch-depth: 0
8181
- name: Download test results

.github/workflows/check-package-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Get NPM version is new
1313
id: check
1414
uses: EndBug/[email protected]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
# Setup .npmrc file to publish to GitHub Packages
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
1313
node-version: '18.x'
1414
registry-url: 'https://npm.pkg.github.com'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-node@v3
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
1111
with:
1212
node-version: '18.x'
1313
registry-url: 'https://registry.npmjs.org/'

CHANGELOG.md

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

13+
## [2.2.5] - 2023-11-15
14+
15+
### Changed
16+
- chore(deps): Update devDependencies
17+
1318
## [2.2.4] - 2023-08-14
1419

1520
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-localstorage-commands",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.organization=javierbrea
22
sonar.projectKey=javierbrea_cypress-localstorage-commands
3-
sonar.projectVersion=2.2.4
3+
sonar.projectVersion=2.2.5
44

55
sonar.javascript.file.suffixes=.js
66
sonar.sourceEncoding=UTF-8

test-e2e/cypress-9/package-lock.json

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-e2e/cypress-9/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"babel-loader": "9.1.3",
1717
"babel-plugin-module-resolver": "5.0.0",
1818
"cypress": "9.7.0",
19-
"start-server-and-test": "2.0.0",
20-
"webpack": "5.88.2"
19+
"start-server-and-test": "2.0.2",
20+
"webpack": "5.89.0"
2121
}
2222
}

0 commit comments

Comments
 (0)