@beauraines/bacon-ipsum-cli 0.2.41 → 0.2.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,12 +14,12 @@ jobs:
14
14
 
15
15
  strategy:
16
16
  matrix:
17
- node-version: [18.x,20.x]
17
+ node-version: [20.x,22.x]
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v3
20
+ - uses: actions/checkout@v6
21
21
  - name: Use Node.js ${{ matrix.node-version }}
22
- uses: actions/setup-node@v3
22
+ uses: actions/setup-node@v6
23
23
  with:
24
24
  node-version: ${{ matrix.node-version }}
25
25
  - run: npm ci
@@ -6,12 +6,16 @@ on:
6
6
  types: [completed]
7
7
  branches: [master,main]
8
8
 
9
+ permissions:
10
+ contents: write
11
+ id-token: write
12
+
9
13
  jobs:
10
14
  publish-new-version:
11
15
  runs-on: ubuntu-latest
12
16
  if: ${{ github.event.workflow_run.conclusion == 'success' }}
13
17
  steps:
14
- - uses: actions/checkout@v3
18
+ - uses: actions/checkout@v6
15
19
  with:
16
20
  fetch-depth: '0'
17
21
  - name: git setup
@@ -19,9 +23,9 @@ jobs:
19
23
  git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
20
24
  git config --local user.name "github-actions[bot]"
21
25
  - name: setup node
22
- uses: actions/setup-node@v3
26
+ uses: actions/setup-node@v6
23
27
  with:
24
- node-version: 20.x
28
+ node-version: '24'
25
29
  registry-url: 'https://registry.npmjs.org'
26
30
  - name: npm install
27
31
  run: npm ci
@@ -42,12 +46,10 @@ jobs:
42
46
  - name: Publish to NPM
43
47
  if: steps.should_release.outcome == 'success'
44
48
  run: npm publish
45
- env:
46
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
47
49
 
48
50
  - name: Push commits to GitHub
49
51
  if: steps.should_release.outcome == 'success'
50
- uses: ad-m/github-push-action@master
52
+ uses: ad-m/github-push-action@v1.0.0
51
53
  with:
52
54
  github_token: ${{ secrets.GITHUB_TOKEN }}
53
55
  branch: ${{ github.ref }}
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.2.42](https://github.com/beauraines/bacon-ipsum-cli/compare/v0.2.41...v0.2.42) (2026-03-23)
6
+
5
7
  ## [0.2.41](https://github.com/beauraines/bacon-ipsum-cli/compare/v0.2.40...v0.2.41) (2026-03-01)
6
8
 
7
9
  ## [0.2.40](https://github.com/beauraines/bacon-ipsum-cli/compare/v0.2.39...v0.2.40) (2026-02-01)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/bacon-ipsum-cli",
3
- "version": "0.2.41",
3
+ "version": "0.2.42",
4
4
  "description": "CLI for Bacon Ipsum text",
5
5
  "exports": "./cli.js",
6
6
  "type": "module",