Skip to content

Commit

Permalink
feat: update action to run on NodeJS 20 (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahanoff authored Oct 18, 2023
1 parent 7f07284 commit 2a28664
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@ on: # rebuild any PRs and main branch changes
- main
- 'releases/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
strategy:
matrix:
node: [8, 10, 12, 14, 16, 18]
node: [8, 10, 12, 14, 16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
required: true
description: MS Teams webhook URI
runs:
using: node16
using: node20
main: dist/main/index.js
branding:
icon: truck
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opsless/ms-teams-github-actions",
"version": "0.3.0",
"version": "1.0.0",
"private": true,
"description": "MS Teams Github Actions integration",
"main": "lib/main.js",
Expand Down

0 comments on commit 2a28664

Please sign in to comment.