Skip to content

Commit 3caec53

Browse files
authored
chore(deps): use Node 24 LTS (#16)
Fix #9.
1 parent 83982c6 commit 3caec53

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v5
99
- uses: actions/setup-node@v6
1010
with:
11-
node-version: 16.x
11+
node-version: 24.x
1212
- run: npm ci
1313
- run: npm run lint
1414
- run: npm run test

action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
name: 'publiccode.yml bot'
2-
description: 'The bot automating the publiccodeyml organization procedures'
1+
name: "publiccode.yml bot"
2+
description: "The bot automating the publiccodeyml organization procedures"
33

44
inputs:
55
github_token:
6-
description: 'GITHUB_TOKEN'
6+
description: "GITHUB_TOKEN"
77
required: false
8-
default: '${{ github.token }}'
8+
default: "${{ github.token }}"
99
username:
1010
description: The username of the bot
1111
required: false
1212
default: bot
1313

1414
runs:
15-
using: 'node16'
16-
main: 'dist/index.js'
15+
using: node24
16+
main: "dist/index.js"
1717

1818
branding:
19-
icon: 'activity'
20-
color: 'white'
19+
icon: "activity"
20+
color: "white"

0 commit comments

Comments
 (0)