Skip to content

Commit 2a28664

Browse files
authored
feat: update action to run on NodeJS 20 (#46)
1 parent 7f07284 commit 2a28664

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/test.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,13 @@ on: # rebuild any PRs and main branch changes
66
- main
77
- 'releases/*'
88
jobs:
9-
build:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- uses: actions/checkout@v2
139
test: # make sure the action works on a clean machine without building
1410
runs-on: ubuntu-latest
1511
strategy:
1612
matrix:
17-
node: [8, 10, 12, 14, 16, 18]
13+
node: [8, 10, 12, 14, 16, 18, 20]
1814
steps:
19-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
2016

2117
- name: Setup node
2218
uses: actions/setup-node@v3

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
required: true
1010
description: MS Teams webhook URI
1111
runs:
12-
using: node16
12+
using: node20
1313
main: dist/main/index.js
1414
branding:
1515
icon: truck

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opsless/ms-teams-github-actions",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"private": true,
55
"description": "MS Teams Github Actions integration",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)