Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kenany/primality
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.0
Choose a base ref
...
head repository: kenany/primality
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 11 additions and 11 deletions.
  1. +3 −3 .github/workflows/nodejs.yml
  2. +3 −3 .github/workflows/release.yml
  3. +5 −5 package.json
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -9,16 +9,16 @@ jobs:
os: [ubuntu-latest]
steps:
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.2.0
with:
node-version: ${{ matrix.node-version }}
- name: Update npm
run: |
npm install -g npm
npm --version
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.2.2
- name: Install dependencies
uses: bahmutov/npm-install@v1.8.34
uses: bahmutov/npm-install@v1.10.6
with:
useLockFile: false
- run: npm ls
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -15,16 +15,16 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: 20
- name: Update npm
run: |
npm install -g npm
npm --version
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.2.2
- name: Install dependencies
uses: bahmutov/npm-install@v1.8.34
uses: bahmutov/npm-install@v1.10.6
with:
useLockFile: false
- run: npm audit signatures
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -44,14 +44,14 @@
"lodash.isfinite": "^2.4.1"
},
"devDependencies": {
"@kenan/eslint-config": "^11.0.0",
"@kenan/eslint-config": "^11.1.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"benchmark": "^2.1.4",
"conventional-changelog-conventionalcommits": "^6.1.0",
"eslint": "^8.48.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"numbers": "^0.7.0",
"semantic-release": "^21.1.1",
"tape": "^5.6.6"
"semantic-release": "^24.2.1",
"tape": "^5.9.0"
}
}