Skip to content

Commit 608706f

Browse files
committed
pedigree release
1 parent e41639d commit 608706f

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [18, 20, 22, latest]
14+
node-version: [18, 20, 22, 24, latest]
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- run: npm i

.github/workflows/release.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish Package
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
12+
jobs:
13+
publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v5
17+
18+
- uses: actions/setup-node@v6
19+
with:
20+
node-version: '24'
21+
registry-url: 'https://registry.npmjs.org'
22+
23+
- name: Update npm
24+
run: npm install -g npm@latest
25+
- run: npm i
26+
- run: npm publish

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## [17.2.2] - 2025-11-14
6+
7+
- npm package provenance release
8+
59
## [17.2.1] - 2025-08-13
610

711
- major upgrade of [@0dep/piso@3](https://www.npmjs.com/package/@0dep/piso)

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bpmn-elements",
3-
"version": "17.2.1",
3+
"version": "17.2.2",
44
"description": "Executable workflow elements based on BPMN 2.0",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -89,7 +89,7 @@
8989
"bpmn-moddle": "^9.0.1",
9090
"c8": "^10.1.1",
9191
"camunda-bpmn-moddle": "^7.0.1",
92-
"chai": "^5.1.0",
92+
"chai": "^6.2.1",
9393
"chronokinesis": "^7.0.0",
9494
"debug": "^4.3.4",
9595
"eslint": "^9.0.0",
@@ -99,7 +99,7 @@
9999
"moddle-context-serializer": "^4.2.1",
100100
"nock": "^14.0.0",
101101
"prettier": "^3.2.5",
102-
"texample": "^0.0.8"
102+
"texample": "^0.1.0"
103103
},
104104
"dependencies": {
105105
"@0dep/piso": "^3.0.1",

0 commit comments

Comments
 (0)