Skip to content

Commit 5a32db1

Browse files
authored
Try switching to node 20 for publishing (#370)
1 parent d1017ab commit 5a32db1

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ on:
44
types: [created]
55

66
permissions:
7-
id-token: write # Required for OIDC
7+
id-token: write # Required for OIDC
88
contents: read
99

1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
15-
- uses: actions/setup-node@v6
16-
with:
17-
node-version: '18.x'
18-
registry-url: https://registry.npmjs.org/
19-
- run: npm install
20-
- run: npm publish --access public
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-node@v6
16+
with:
17+
node-version: "20.x"
18+
- run: npm install
19+
- run: npm publish --access public --provenance

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.3] - 22-Nov-2025
8+
9+
### Changed
10+
11+
- Trying to fix the 404 with trusted publishing
12+
713
## [2.0.2] - 22-Nov-2025
814

915
### Changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@andrewwlane/ssh-keygen2",
33
"type": "module",
4-
"version": "2.0.2",
4+
"version": "2.0.3",
55
"description": "Automate ssh-keygen command for generating RSA keypairs",
66
"main": "index.js",
77
"devDependencies": {
@@ -38,4 +38,4 @@
3838
"bugs": {
3939
"url": "https://github.com/AndrewLane/ssh-keygen2/issues"
4040
}
41-
}
41+
}

0 commit comments

Comments
 (0)