Skip to content

Commit 9202921

Browse files
committed
Bump CI/CD
1 parent 747ad92 commit 9202921

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
41
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
52

63
version: 2
74
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
9-
directory: "/" # Location of package manifests
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "monthly"
9+
- package-ecosystem: "npm"
10+
directory: "/"
1011
schedule:
1112
interval: "monthly"
1213
groups:

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
node-version: [18.x, 22.x]
21+
node-version: [18.x, 24.x]
2222
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v5
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'npm'

.github/workflows/npmpublish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
permissions:
1414
contents: read
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-node@v4
16+
- uses: actions/checkout@v5
17+
- uses: actions/setup-node@v5
1818
with:
19-
node-version: lts
19+
node-version: lts/*
2020
- run: npm ci
2121
- run: npm test
2222

@@ -27,10 +27,10 @@ jobs:
2727
contents: read
2828
packages: write
2929
steps:
30-
- uses: actions/checkout@v4
31-
- uses: actions/setup-node@v4
30+
- uses: actions/checkout@v5
31+
- uses: actions/setup-node@v5
3232
with:
33-
node-version: lts
33+
node-version: lts/*
3434
registry-url: https://registry.npmjs.org/
3535
- run: npm ci
3636
- run: npm publish

0 commit comments

Comments
 (0)