Skip to content

Commit e4a8da9

Browse files
chore: upgrade deps, trusted publishing. (#14)
* chore(deps): bump glob Bumps and [glob](https://github.com/isaacs/node-glob). These dependencies needed to be updated together. Updates `glob` from 11.0.3 to 11.1.0 - [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md) - [Commits](isaacs/node-glob@v11.0.3...v11.1.0) Updates `glob` from 10.4.5 to 10.5.0 - [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md) - [Commits](isaacs/node-glob@v11.0.3...v11.1.0) --- updated-dependencies: - dependency-name: glob dependency-version: 11.1.0 dependency-type: indirect - dependency-name: glob dependency-version: 10.5.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * chore: upgrade deps, trusted publishing. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0a6230c commit e4a8da9

4 files changed

Lines changed: 334 additions & 539 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
17-
version: ['22.17.1', '24.4.1']
17+
version: ['22.21.1', '24.11.1']
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- name: Checkout
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Dependencies
2727
run: npm ci
2828
- name: Save error log
29-
uses: actions/upload-artifact@v4.3.0
29+
uses: actions/upload-artifact@v4.6.2
3030
if: ${{ failure() }}
3131
with:
3232
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
@@ -36,7 +36,7 @@ jobs:
3636
- name: Test
3737
run: npm test
3838
- name: Report Coverage
39-
uses: codecov/codecov-action@v5.4.0
39+
uses: codecov/codecov-action@v5.5.1
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }}
4242
- name: Pack

.github/workflows/publish.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
release:
55
types: [published]
66

7+
permissions:
8+
id-token: write
9+
contents: read
10+
711
jobs:
812
publish:
913
if: contains('["knightedcodemonkey"]', github.actor)
@@ -14,11 +18,11 @@ jobs:
1418
- name: Setup Node
1519
uses: actions/setup-node@v4.3.0
1620
with:
17-
node-version: '24.4.1'
21+
node-version: '24.11.1'
1822
- name: Install Dependencies
1923
run: npm ci
2024
- name: Save error log
21-
uses: actions/upload-artifact@v4.3.0
25+
uses: actions/upload-artifact@v4.6.2
2226
if: ${{ failure() }}
2327
with:
2428
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
@@ -30,8 +34,7 @@ jobs:
3034
- name: Pack
3135
run: npm pack
3236
- name: Push to NPM registry
33-
uses: JS-DevTools/npm-publish@v3.1.1
37+
uses: JS-DevTools/npm-publish@v4.1.1
3438
with:
35-
token: ${{ secrets.NPM_AUTH_TOKEN }}
36-
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }}
3739
access: public
40+
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }}

0 commit comments

Comments
 (0)