Skip to content

Commit 8ca5a24

Browse files
authored
Merge branch 'main' into cli
2 parents a76349b + 0aed2c2 commit 8ca5a24

10 files changed

Lines changed: 88 additions & 90 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ updates:
77
ignore:
88
- dependency-name: "@types/node"
99
versions:
10-
- "21.x"
11-
- "22.x"
12-
- "23.x"
13-
- "24.x"
1410
- "25.x"
1511
- package-ecosystem: "github-actions"
1612
directory: "/"

.github/workflows/develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
persist-credentials: false
1818
- name: Setup the Node runtime for this project
19-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
19+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2020
with:
2121
cache: npm
2222
cache-dependency-path: package-lock.json

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
ref: ${{ inputs.ref || github.event.pull_request.head.sha || github.sha }}
3333

3434
- name: "build: setup the node runtime"
35-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
35+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3636
with:
3737
cache: npm
3838
cache-dependency-path: package-lock.json

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: ${{ github.event.release.tag_name }}
2222

2323
- name: Configure the runtime node
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
cache: npm
2727
cache-dependency-path: package-lock.json

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
persist-credentials: false
2121

2222
- name: "build: setup the node runtime"
23-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
23+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2424
with:
2525
cache: npm
2626
cache-dependency-path: package-lock.json

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
24

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ outputs:
5454
ts:
5555
description: "The timestamp of a Slack message or event in the response."
5656
runs:
57-
using: "node20"
57+
using: "node24"
5858
main: "dist/index.js"

jsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"checkJs": true,
66
"esModuleInterop": true,
77
"lib": [
8-
"ES2023"
8+
"ESNext"
99
],
10-
"module": "node16",
11-
"moduleResolution": "node",
10+
"module": "nodenext",
11+
"moduleResolution": "nodenext",
1212
"noFallthroughCasesInSwitch": true,
1313
"noImplicitReturns": true,
1414
"noUnusedLocals": true,
1515
"noUnusedParameters": true,
16-
"target": "ES2022"
16+
"target": "ESNext"
1717
},
1818
"exclude": [
1919
"node_modules"

package-lock.json

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

0 commit comments

Comments
 (0)